Initial Checkin

[SVN r8661]
This commit is contained in:
Dave Abrahams
2001-01-21 00:16:10 +00:00
parent de2904c9a1
commit 4d24f82e6e

19
include/boost/type.hpp Normal file
View File

@ -0,0 +1,19 @@
// (C) Copyright David Abrahams 2001. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#ifndef BOOST_TYPE_DWA20010120_HPP
# define BOOST_TYPE_DWA20010120_HPP
namespace boost {
// Just a simple "type envelope". Useful in various contexts, mostly to work
// around some MSVC deficiencies.
template <class T>
struct type {};
}
#endif // BOOST_TYPE_DWA20010120_HPP