Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r49797 - sandbox/itl/boost/itl/type_traits
From: afojgo_at_[hidden]
Date: 2008-11-16 12:07:58


Author: jofaber
Date: 2008-11-16 12:07:57 EST (Sun, 16 Nov 2008)
New Revision: 49797
URL: http://svn.boost.org/trac/boost/changeset/49797

Log:
Added trait is_map.hpp. Stable {msvc-9.0}

Added:
   sandbox/itl/boost/itl/type_traits/is_map.hpp (contents, props changed)

Added: sandbox/itl/boost/itl/type_traits/is_map.hpp
==============================================================================
--- (empty file)
+++ sandbox/itl/boost/itl/type_traits/is_map.hpp 2008-11-16 12:07:57 EST (Sun, 16 Nov 2008)
@@ -0,0 +1,21 @@
+/*----------------------------------------------------------------------------+
+Copyright (c) 2008-2008: Joachim Faulhaber
++-----------------------------------------------------------------------------+
+ Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file LICENCE.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
++----------------------------------------------------------------------------*/
+#ifndef __itl_type_traits_is_map_JOFA_081107_H__
+#define __itl_type_traits_is_map_JOFA_081107_H__
+
+namespace boost{ namespace itl
+{
+ template <class Type> struct is_map;
+
+ template <class Type> struct is_map{ enum {value = false}; };
+
+}} // namespace boost itl
+
+#endif
+
+


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk