~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef BOOST_MPL_OR_HPP_INCLUDED
 
3
#define BOOST_MPL_OR_HPP_INCLUDED
 
4
 
 
5
// + file: boost/mpl/or.hpp
 
6
// + last modified: 25/feb/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
#include "boost/mpl/aux_/config/use_preprocessed.hpp"
 
22
 
 
23
#if !defined(BOOST_MPL_NO_PREPROCESSED_HEADERS) \
 
24
 && !defined(BOOST_MPL_PREPROCESSING_MODE)
 
25
 
 
26
#   include "boost/mpl/bool.hpp"
 
27
#   include "boost/mpl/aux_/nested_type_wknd.hpp"
 
28
#   include "boost/mpl/aux_/void_spec.hpp"
 
29
#   include "boost/mpl/aux_/lambda_support.hpp"
 
30
 
 
31
#   define BOOST_MPL_PREPROCESSED_HEADER or.hpp
 
32
#   include "boost/mpl/aux_/include_preprocessed.hpp"
 
33
 
 
34
#else
 
35
 
 
36
#   define AUX_LOGICAL_OP_NAME or_
 
37
#   define AUX_LOGICAL_OP_VALUE1 true
 
38
#   define AUX_LOGICAL_OP_VALUE2 false
 
39
#   include "boost/mpl/aux_/logical_op.hpp"
 
40
 
 
41
#endif // BOOST_MPL_USE_PREPROCESSED_HEADERS
 
42
#endif // BOOST_MPL_OR_HPP_INCLUDED