Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r51689 - sandbox/numeric_bindings/boost/numeric/bindings/traits
From: rutger_at_[hidden]
Date: 2009-03-10 15:11:10


Author: rutger
Date: 2009-03-10 15:11:09 EDT (Tue, 10 Mar 2009)
New Revision: 51689
URL: http://svn.boost.org/trac/boost/changeset/51689

Log:
Added base files for is_matrix, is_vector

Added:
   sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp (contents, props changed)
   sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp (contents, props changed)
Text files modified:
   sandbox/numeric_bindings/boost/numeric/bindings/traits/is_real.hpp | 3 ---
   1 files changed, 0 insertions(+), 3 deletions(-)

Added: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp
==============================================================================
--- (empty file)
+++ sandbox/numeric_bindings/boost/numeric/bindings/traits/is_matrix.hpp 2009-03-10 15:11:09 EDT (Tue, 10 Mar 2009)
@@ -0,0 +1,24 @@
+//
+// Copyright (c) 2009 by Rutger ter Borg
+//
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+
+#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
+#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_MATRIX_HPP
+
+#include <boost/mpl/bool.hpp>
+
+namespace boost {
+namespace numeric {
+namespace bindings {
+namespace traits {
+
+template< typename T >
+struct is_matrix: boost::mpl::bool_<false> {};
+
+}}}}
+
+#endif

Modified: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_real.hpp
==============================================================================
--- sandbox/numeric_bindings/boost/numeric/bindings/traits/is_real.hpp (original)
+++ sandbox/numeric_bindings/boost/numeric/bindings/traits/is_real.hpp 2009-03-10 15:11:09 EDT (Tue, 10 Mar 2009)
@@ -5,9 +5,6 @@
 // (See accompanying file LICENSE_1_0.txt or copy at
 // http://www.boost.org/LICENSE_1_0.txt)
 //
-// THIS FILE IS AUTOMATICALLY GENERATED
-// PLEASE DO NOT EDIT!
-//
 
 #ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_REAL_HPP
 #define BOOST_NUMERIC_BINDINGS_TRAITS_IS_REAL_HPP

Added: sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp
==============================================================================
--- (empty file)
+++ sandbox/numeric_bindings/boost/numeric/bindings/traits/is_vector.hpp 2009-03-10 15:11:09 EDT (Tue, 10 Mar 2009)
@@ -0,0 +1,24 @@
+//
+// Copyright (c) 2009 by Rutger ter Borg
+//
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+
+#ifndef BOOST_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
+#define BOOST_NUMERIC_BINDINGS_TRAITS_IS_VECTOR_HPP
+
+#include <boost/mpl/bool.hpp>
+
+namespace boost {
+namespace numeric {
+namespace bindings {
+namespace traits {
+
+template< typename T >
+struct is_vector: boost::mpl::bool_<false> {};
+
+}}}}
+
+#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