Protium
Math and Design Features
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Pages
DataType.h
Go to the documentation of this file.
1 #ifndef Protium_DataType_h_
2 #define Protium_DataType_h_
3 
4 namespace Protium{
5  namespace Containers{
6 
7  template< typename Type>
8  struct Data1D{
9  Type xValue;
10  };
11 
12  template< typename Type>
13  struct Data2D{
14  Type xValue;
15  Type yValue;
16  };
17 
18  template<typename Type>
19  struct Data3D{
20  Type xValue;
21  Type yValue;
22  Type ZValue;
23  };
24  }
25 }
26 
27 #endif //File Guardian