source: NonGTP/Boost/boost/numeric/ublas/detail/temporary.hpp @ 857

Revision 857, 1.2 KB checked in by igarcia, 18 years ago (diff)
Line 
1//
2//  Copyright (c) 2000-2002
3//  Joerg Walter, Mathias Koch
4//
5//  Permission to use, copy, modify, distribute and sell this software
6//  and its documentation for any purpose is hereby granted without fee,
7//  provided that the above copyright notice appear in all copies and
8//  that both that copyright notice and this permission notice appear
9//  in supporting documentation.  The authors make no representations
10//  about the suitability of this software for any purpose.
11//  It is provided "as is" without express or implied warranty.
12//
13//  The authors gratefully acknowledge the support of
14//  GeNeSys mbH & Co. KG in producing this work.
15//
16
17#ifndef _BOOST_UBLAS_TEMPORARY_
18#define _BOOST_UBLAS_TEMPORARY_
19
20
21namespace boost { namespace numeric { namespace ublas {
22
23/// For the creation of temporary vectors in the assignment of proxies
24template <class M>
25struct vector_temporary_traits {
26   typedef typename M::vector_temporary_type type ;
27};
28
29/// For the creation of temporary vectors in the assignment of proxies
30template <class M>
31struct matrix_temporary_traits {
32   typedef typename M::matrix_temporary_type type ;
33};
34
35} } }
36
37#endif
Note: See TracBrowser for help on using the repository browser.