Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65183 - sandbox/itl/boost/itl/type_traits
From: afojgo_at_[hidden]
Date: 2010-09-01 18:09:43


Author: jofaber
Date: 2010-09-01 18:09:37 EDT (Wed, 01 Sep 2010)
New Revision: 65183
URL: http://svn.boost.org/trac/boost/changeset/65183

Log:
Refactoring. Unifying interval_sets. Extracted global functions. Stable{msvc-9.0, gcc-3.4.4}
Added:
   sandbox/itl/boost/itl/type_traits/is_interval_joiner.hpp (contents, props changed)

Added: sandbox/itl/boost/itl/type_traits/is_interval_joiner.hpp
==============================================================================
--- (empty file)
+++ sandbox/itl/boost/itl/type_traits/is_interval_joiner.hpp 2010-09-01 18:09:37 EDT (Wed, 01 Sep 2010)
@@ -0,0 +1,23 @@
+/*-----------------------------------------------------------------------------+
+Copyright (c) 2008-2009: 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 BOOST_ITL_TYPE_TRAITS_IS_INTERVAL_JOINER_HPP_JOFA_100901
+#define BOOST_ITL_TYPE_TRAITS_IS_INTERVAL_JOINER_HPP_JOFA_100901
+
+namespace boost{ namespace itl
+{
+ template <class Type> struct is_interval_joiner
+ {
+ typedef is_interval_joiner<Type> type;
+ BOOST_STATIC_CONSTANT(bool, 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