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