123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_STRING_CONSTANTS_HPP
- #define BOOST_STRING_CONSTANTS_HPP
- namespace boost {
- namespace algorithm {
-
-
- enum token_compress_mode_type
- {
- token_compress_on,
- token_compress_off
- };
-
- }
-
- using algorithm::token_compress_on;
- using algorithm::token_compress_off;
- }
- #endif
|