123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef _GLIBCXX_REGEX
- #define _GLIBCXX_REGEX 1
- #pragma GCC system_header
- #if __cplusplus < 201103L
- # include <bits/c++0x_warning.h>
- #else
- #include <algorithm>
- #include <bitset>
- #include <functional>
- #ifdef _GLIBCXX_DEBUG
- # include <iosfwd>
- #endif
- #include <iterator>
- #include <locale>
- #include <memory>
- #include <sstream>
- #include <stack>
- #include <stdexcept>
- #include <string>
- #include <utility>
- #include <vector>
- #include <map>
- #include <cstring>
- #include <bits/regex_constants.h>
- #include <bits/regex_error.h>
- #include <bits/regex_automaton.h>
- #include <bits/regex_scanner.h>
- #include <bits/regex_compiler.h>
- #include <bits/regex.h>
- #include <bits/regex_executor.h>
- #endif
- #endif
|