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