]> git.lyx.org Git - lyx.git/blob - boost/boost/type_traits/cv_traits.hpp
update to boost 1.30.1
[lyx.git] / boost / boost / type_traits / cv_traits.hpp
1 //  (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard
2 //  Hinnant & John Maddock 2000.  Permission to copy, use, modify,
3 //  sell and distribute this software is granted provided this
4 //  copyright notice appears in all copies. This software is provided
5 //  "as is" without express or implied warranty, and with no claim as
6 //  to its suitability for any purpose.
7 //
8 //  See http://www.boost.org for most recent version including documentation.
9 //
10 //  defines traits classes for cv-qualified types:
11 //  is_const, is_volatile, remove_const, remove_volatile, remove_cv.
12
13 #ifndef BOOST_TT_CV_TRAITS_HPP_INCLUDED
14 #define BOOST_TT_CV_TRAITS_HPP_INCLUDED
15
16 #include "boost/type_traits/add_const.hpp"
17 #include "boost/type_traits/add_volatile.hpp"
18 #include "boost/type_traits/add_cv.hpp"
19 #include "boost/type_traits/is_const.hpp"
20 #include "boost/type_traits/is_volatile.hpp"
21 #include "boost/type_traits/remove_const.hpp"
22 #include "boost/type_traits/remove_volatile.hpp"
23 #include "boost/type_traits/remove_cv.hpp"
24
25 #endif // BOOST_TT_CV_TRAITS_HPP_INCLUDED