Vcsn  2.0
Be Rational
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
regex.hh
Go to the documentation of this file.
1 #ifndef VCSN_MISC_REGEX_HH
2 # define VCSN_MISC_REGEX_HH
3 
4 # include <vcsn/config.hh>
5 
6 # if VCSN_STD_REGEX_WORKS
7 
8 # include <regex>
9 
10 # else
11 
12 # include <boost/tr1/regex.hpp>
13 namespace std
14 {
15  using namespace std::tr1;
16 }
17 
18 # endif // !VCSN_STD_REGEX_WORKS
19 
20 #endif // !VCSN_MISC_REGEX_HH