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

« back to all changes in this revision

Viewing changes to boost/boost/type_traits/transform_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 Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
 
2
//  Permission to copy, use, modify, sell and
 
3
//  distribute this software is granted provided this copyright notice appears
 
4
//  in all copies. This software is provided "as is" without express or implied
 
5
//  warranty, and with no claim as to its suitability for any purpose.
 
6
//
 
7
//  See http://www.boost.org for most recent version including documentation.
 
8
//
 
9
//  defines traits classes for transforming one type to another:
 
10
//  remove_reference, add_reference, remove_bounds, remove_pointer.
 
11
//
 
12
 
 
13
#ifndef BOOST_TT_TRANSFORM_TRAITS_HPP_INCLUDED
 
14
#define BOOST_TT_TRANSFORM_TRAITS_HPP_INCLUDED
 
15
 
 
16
#include "boost/type_traits/add_pointer.hpp"
 
17
#include "boost/type_traits/add_reference.hpp"
 
18
#include "boost/type_traits/remove_bounds.hpp"
 
19
#include "boost/type_traits/remove_pointer.hpp"
 
20
#include "boost/type_traits/remove_reference.hpp"
 
21
 
 
22
#endif // BOOST_TT_TRANSFORM_TRAITS_HPP_INCLUDED