00001 00002 #ifndef BOOST_MPL_BOOL_FWD_HPP_INCLUDED 00003 #define BOOST_MPL_BOOL_FWD_HPP_INCLUDED 00004 00005 // Copyright Aleksey Gurtovoy 2000-2004 00006 // 00007 // Distributed under the Boost Software License, Version 1.0. 00008 // (See accompanying file LICENSE_1_0.txt or copy at 00009 // http://www.boost.org/LICENSE_1_0.txt) 00010 // 00011 // See http://www.boost.org/libs/mpl for documentation. 00012 00013 // $Source: /Users/acg/CVSROOT/systemc-2.2/src/sysc/packages/boost/mpl/bool_fwd.hpp,v $ 00014 // $Date: 2006/12/15 20:31:38 $ 00015 // $Revision: 1.1.1.1 $ 00016 00017 #include <sysc/packages/boost/mpl/aux_/adl_barrier.hpp> 00018 00019 BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN 00020 00021 template< bool C_ > struct bool_; 00022 00023 // shorcuts 00024 typedef bool_<true> true_; 00025 typedef bool_<false> false_; 00026 00027 BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE 00028 00029 BOOST_MPL_AUX_ADL_BARRIER_DECL(bool_) 00030 BOOST_MPL_AUX_ADL_BARRIER_DECL(true_) 00031 BOOST_MPL_AUX_ADL_BARRIER_DECL(false_) 00032 00033 #endif // BOOST_MPL_BOOL_FWD_HPP_INCLUDED
1.5.5