123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_SYSTEM_IS_ERROR_CODE_ENUM_HPP_INCLUDED
- #define BOOST_SYSTEM_IS_ERROR_CODE_ENUM_HPP_INCLUDED
- namespace boost
- {
- namespace system
- {
- class error_code;
- template<class T> struct is_error_code_enum
- {
- static const bool value = false;
- };
- }
- }
- #endif
|