]> git.lyx.org Git - lyx.git/blob - boost/boost/mpl/bool_fwd.hpp
small stuff, whitespace & consistent naming
[lyx.git] / boost / boost / mpl / bool_fwd.hpp
1 #ifndef BOOST_MPL_BOOL_FWD_HPP_INCLUDED
2 #define BOOST_MPL_BOOL_FWD_HPP_INCLUDED
3
4 // + file: boost/mpl/bool_fwd.hpp
5 // + last modified: 08/mar/03
6
7 // Copyright (c) 2000-03
8 // Aleksey Gurtovoy
9 //
10 // Permission to use, copy, modify, distribute and sell this software
11 // and its documentation for any purpose is hereby granted without fee,
12 // provided that the above copyright notice appears in all copies and
13 // that both the copyright notice and this permission notice appear in
14 // supporting documentation. No representations are made about the
15 // suitability of this software for any purpose. It is provided "as is"
16 // without express or implied warranty.
17 //
18 // See http://www.boost.org/libs/mpl for documentation.
19
20 namespace boost { namespace mpl {
21
22 template< bool C_ > struct bool_;
23
24 // shorcuts
25 typedef bool_<true> true_;
26 typedef bool_<false> false_;
27
28 }}
29
30 #endif // BOOST_MPL_BOOL_FWD_HPP_INCLUDED