![]() |
Boost.uBlas 1.49
Linear Algebra in C++: matrices, vectors and numeric algorithms
|
00001 // 00002 // Copyright (c) 2000-2002 00003 // Joerg Walter, Mathias Koch 00004 // 00005 // Distributed under the Boost Software License, Version 1.0. (See 00006 // accompanying file LICENSE_1_0.txt or copy at 00007 // http://www.boost.org/LICENSE_1_0.txt) 00008 // 00009 // The authors gratefully acknowledge the support of 00010 // GeNeSys mbH & Co. KG in producing this work. 00011 // 00012 00013 #ifndef _BOOST_UBLAS_TEMPORARY_ 00014 #define _BOOST_UBLAS_TEMPORARY_ 00015 00016 00017 namespace boost { namespace numeric { namespace ublas { 00018 00020 template <class M> 00021 struct vector_temporary_traits { 00022 typedef typename M::vector_temporary_type type ; 00023 }; 00024 00026 template <class M> 00027 struct matrix_temporary_traits { 00028 typedef typename M::matrix_temporary_type type ; 00029 }; 00030 00031 } } } 00032 00033 #endif