|
||||
File indexing completed on 2024-11-16 09:34:15
0001 #ifndef BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED 0002 #define BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED 0003 0004 // Copyright Beman Dawes 2006, 2007 0005 // Copyright Christoper Kohlhoff 2007 0006 // Copyright Peter Dimov 2017, 2018 0007 // 0008 // Distributed under the Boost Software License, Version 1.0. (See accompanying 0009 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 0010 // 0011 // See library home page at http://www.boost.org/libs/system 0012 0013 namespace boost 0014 { 0015 0016 namespace system 0017 { 0018 0019 class error_condition; 0020 0021 template<class T> struct is_error_condition_enum 0022 { 0023 static const bool value = false; 0024 }; 0025 0026 } // namespace system 0027 0028 } // namespace boost 0029 0030 #endif // #ifndef BOOST_SYSTEM_IS_ERROR_CONDITION_ENUM_HPP_INCLUDED
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |