annotate DEPENDENCIES/generic/include/boost/numeric/ublas/detail/temporary.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 //
Chris@16 2 // Copyright (c) 2000-2002
Chris@16 3 // Joerg Walter, Mathias Koch
Chris@16 4 //
Chris@16 5 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 6 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 7 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 8 //
Chris@16 9 // The authors gratefully acknowledge the support of
Chris@16 10 // GeNeSys mbH & Co. KG in producing this work.
Chris@16 11 //
Chris@16 12
Chris@16 13 #ifndef _BOOST_UBLAS_TEMPORARY_
Chris@16 14 #define _BOOST_UBLAS_TEMPORARY_
Chris@16 15
Chris@16 16
Chris@16 17 namespace boost { namespace numeric { namespace ublas {
Chris@16 18
Chris@16 19 /// For the creation of temporary vectors in the assignment of proxies
Chris@16 20 template <class M>
Chris@16 21 struct vector_temporary_traits {
Chris@16 22 typedef typename M::vector_temporary_type type ;
Chris@16 23 };
Chris@16 24
Chris@16 25 /// For the creation of temporary vectors in the assignment of proxies
Chris@16 26 template <class M>
Chris@16 27 struct matrix_temporary_traits {
Chris@16 28 typedef typename M::matrix_temporary_type type ;
Chris@16 29 };
Chris@16 30
Chris@16 31 } } }
Chris@16 32
Chris@16 33 #endif