Chris@16: /*-----------------------------------------------------------------------------+ Chris@16: Author: Joachim Faulhaber Chris@16: Copyright (c) 2009-2009: Joachim Faulhaber Chris@16: +------------------------------------------------------------------------------+ Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENCE.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: +-----------------------------------------------------------------------------*/ Chris@16: /*-----------------------------------------------------------------------------+ Chris@16: States of comparison and inclusion relations as static constants Chris@16: +-----------------------------------------------------------------------------*/ Chris@16: #ifndef BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 Chris@16: #define BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 Chris@16: Chris@16: namespace boost{namespace icl Chris@16: { Chris@16: namespace comparison Chris@16: { Chris@16: static const int less = -1; Chris@16: static const int equal = 0; Chris@16: static const int greater = 1; Chris@16: } Chris@16: Chris@16: namespace inclusion Chris@16: { Chris@16: static const int unrelated = 0; Chris@16: static const int subset = 1; Chris@16: static const int superset = 2; Chris@16: static const int equal = 3; Chris@16: } Chris@16: Chris@16: Chris@16: }} // namespace icl boost Chris@16: Chris@16: #endif // BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 Chris@16: Chris@16: