Chris@16: // Chris@16: // Copyright (c) 2000-2002 Chris@16: // Joerg Walter, Mathias Koch Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. (See Chris@16: // accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: // The authors gratefully acknowledge the support of Chris@16: // GeNeSys mbH & Co. KG in producing this work. Chris@16: // Chris@16: Chris@16: #ifndef _BOOST_UBLAS_TEMPORARY_ Chris@16: #define _BOOST_UBLAS_TEMPORARY_ Chris@16: Chris@16: Chris@16: namespace boost { namespace numeric { namespace ublas { Chris@16: Chris@16: /// For the creation of temporary vectors in the assignment of proxies Chris@16: template Chris@16: struct vector_temporary_traits { Chris@16: typedef typename M::vector_temporary_type type ; Chris@16: }; Chris@16: Chris@16: /// For the creation of temporary vectors in the assignment of proxies Chris@16: template Chris@16: struct matrix_temporary_traits { Chris@16: typedef typename M::matrix_temporary_type type ; Chris@16: }; Chris@16: Chris@16: } } } Chris@16: Chris@16: #endif