1 /*-----------------------------------------------------------------------------+ 2 Author: Joachim Faulhaber 3 Copyright (c) 2009-2009: Joachim Faulhaber 4 +------------------------------------------------------------------------------+ 5 Distributed under the Boost Software License, Version 1.0. 6 (See accompanying file LICENCE.txt or copy at 7 http://www.boost.org/LICENSE_1_0.txt) 8 +-----------------------------------------------------------------------------*/ 9 /*-----------------------------------------------------------------------------+ 10 States of comparison and inclusion relations as static constants 11 +-----------------------------------------------------------------------------*/ 12 #ifndef BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 13 #define BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 14 15 namespace boost{namespace icl 16 { 17 namespace comparison 18 { 19 static const int less = -1; 20 static const int equal = 0; 21 static const int greater = 1; 22 } 23 24 namespace inclusion 25 { 26 static const int unrelated = 0; 27 static const int subset = 1; 28 static const int superset = 2; 29 static const int equal = 3; 30 } 31 32 33 }} // namespace icl boost 34 35 #endif // BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 36 37 38