FooBar
floatcoordbase.h
Go to the documentation of this file.
1 #ifndef _floatcoord_h_
2 #define _floatcoord_h_
3 
4 template<int DIMENSIONS>
5 class FloatCoord
6 {
7  friend class Typemaps;
8 private:
9  float vec[DIMENSIONS];
10 };
11 
13 {
14  friend class Typemaps;
15 public:
19 };
20 
21 #endif