Flow123d  jenkins-Flow123d-windows32-release-multijob-51
point.hh
Go to the documentation of this file.
1 /*
2  * point.hh
3  *
4  * Created on: Nov 27, 2012
5  * Author: jb
6  */
7 
8 #ifndef POINT_HH_
9 #define POINT_HH_
10 
11 #include <armadillo>
12 
13 
14 /*
15  * TODO:
16  * need better resolution of various C++11 functionalities
17  * e.g. following is supported from GCC 4.7
18  */
19 
20 template<int spacedim>
21 class Space {
22 public:
23  typedef typename arma::vec::fixed<spacedim> Point;
24 };
25 
26 
27 #endif /* POINT_HH_ */
arma::vec::fixed< spacedim > Point
Definition: point.hh:23
Definition: point.hh:21