valSPH
 All Classes Files Functions Variables
ThreeTensor.h
Go to the documentation of this file.
1 
10 #ifndef __ThreeTensor_h__
11 #define __ThreeTensor_h__
12 
13 
14 #include <vector>
15 
16 #include "TwoTensor.h"
17 
18 
19 using namespace std;
20 
21 
22 class ThreeTensor {
23 
24 
25  private:
26 
27 
28  vector< TwoTensor > twoTensors;
29 
30 
31  public:
32 
33 
37  ThreeTensor ();
38 
39 
47  TwoTensor at (int pos);
48 
49 
55  void push_back (TwoTensor twoTensor);
56 
57 
61  ~ThreeTensor ();
62 
63 
64 };
65 
66 
67 #endif