type.hpp 481 B

123456789101112131415161718
  1. // (C) Copyright David Abrahams 2001.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_TYPE_DWA20010120_HPP
  6. # define BOOST_TYPE_DWA20010120_HPP
  7. namespace boost {
  8. // Just a simple "type envelope". Useful in various contexts, mostly to work
  9. // around some MSVC deficiencies.
  10. template <class T>
  11. struct type {};
  12. }
  13. #endif // BOOST_TYPE_DWA20010120_HPP