From 4d24f82e6e39013e409d03d92000a851c138a964 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 21 Jan 2001 00:16:10 +0000 Subject: [PATCH] Initial Checkin [SVN r8661] --- include/boost/type.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/boost/type.hpp diff --git a/include/boost/type.hpp b/include/boost/type.hpp new file mode 100644 index 0000000..a6d17f6 --- /dev/null +++ b/include/boost/type.hpp @@ -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 + struct type {}; + +} + +#endif // BOOST_TYPE_DWA20010120_HPP