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

« back to all changes in this revision

Viewing changes to boost/boost/call_traits.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
//  (C) Copyright Boost.org 2000. Permission to copy, use, modify, sell and
 
2
//  distribute this software is granted provided this copyright notice appears
 
3
//  in all copies. This software is provided "as is" without express or implied
 
4
//  warranty, and with no claim as to its suitability for any purpose.
 
5
 
 
6
//  See http://www.boost.org/libs/utility/call_traits.htm for Documentation.
 
7
//  See boost/detail/call_traits.hpp and boost/detail/ob_call_traits.hpp
 
8
//  for full copyright notices.
 
9
 
 
10
#ifndef BOOST_CALL_TRAITS_HPP
 
11
#define BOOST_CALL_TRAITS_HPP
 
12
 
 
13
#ifndef BOOST_CONFIG_HPP
 
14
#include <boost/config.hpp>
 
15
#endif
 
16
 
 
17
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
 
18
#include <boost/detail/ob_call_traits.hpp>
 
19
#else
 
20
#include <boost/detail/call_traits.hpp>
 
21
#endif
 
22
 
 
23
#endif // BOOST_CALL_TRAITS_HPP