tr1/regex
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef _GLIBCXX_TR1_REGEX
00032 #define _GLIBCXX_TR1_REGEX 1
00033
00034 #pragma GCC system_header
00035
00036 #if defined(_GLIBCXX_INCLUDE_AS_CXX0X)
00037 # error TR1 header cannot be included from C++0x header
00038 #endif
00039
00040 #include <algorithm>
00041 #include <bitset>
00042 #include <iterator>
00043 #include <locale>
00044 #include <stdexcept>
00045 #include <string>
00046 #include <vector>
00047 #include <utility>
00048 #include <sstream>
00049
00050 #if defined(_GLIBCXX_INCLUDE_AS_TR1)
00051 # include <tr1_impl/regex>
00052 #else
00053 # define _GLIBCXX_INCLUDE_AS_TR1
00054 # define _GLIBCXX_BEGIN_NAMESPACE_TR1 namespace tr1 {
00055 # define _GLIBCXX_END_NAMESPACE_TR1 }
00056 # define _GLIBCXX_TR1 tr1::
00057 # include <tr1_impl/regex>
00058 # undef _GLIBCXX_TR1
00059 # undef _GLIBCXX_END_NAMESPACE_TR1
00060 # undef _GLIBCXX_BEGIN_NAMESPACE_TR1
00061 # undef _GLIBCXX_INCLUDE_AS_TR1
00062 #endif
00063
00064 #endif // _GLIBCXX_TR1_REGEX