~ubuntu-branches/ubuntu/breezy/aqsis/breezy

« back to all changes in this revision

Viewing changes to boost/boost/mpl/bool_fwd.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Will Newton
  • Date: 2004-12-07 20:06:49 UTC
  • Revision ID: james.westby@ubuntu.com-20041207200649-fccswkrvp4oc8lmn
Tags: upstream-0.9.3
ImportĀ upstreamĀ versionĀ 0.9.3

Show diffs side-by-side

added added

removed removed

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