Line data Source code
1 : #ifndef SET_MATRIX4_H
2 : #define SET_MATRIX4_H
3 :
4 : #include <iostream>
5 :
6 : #include "Util/Util.H"
7 : #include "Set/Base.H"
8 :
9 : namespace Set
10 : {
11 :
12 : enum Sym {None,Major,Minor,MajorMinor,Diagonal,Full,Isotropic};
13 :
14 : template<int DIM, int SYM>
15 : class Matrix4
16 : {
17 : };
18 :
19 : template<int dim, int sym>
20 : std::ostream&
21 0 : operator<< (std::ostream& os, const Matrix4<dim,sym>& b)
22 : {
23 0 : Matrix4<dim,sym> bcopy = b;
24 0 : bcopy.Print(os);
25 0 : return os;
26 : }
27 :
28 : }
29 :
30 :
31 :
32 : #endif
|