PABLO  0.1
PArallel Balanced Linear Octree
 All Classes Functions Variables Pages
Class_Octant.hpp
1 #ifndef OCTANT_HPP_
2 #define OCTANT_HPP_
3 
4 // =================================================================================== //
5 // INCLUDES //
6 // =================================================================================== //
7 #include "preprocessor_defines.dat"
8 #include "Class_Global.hpp"
9 #include <vector>
10 #include <string.h>
11 #include <algorithm>
12 #include "inlinedFunct.hpp"
13 #include <iostream>
14 #include <bitset>
15 
16 // =================================================================================== //
17 // NAME SPACES //
18 // =================================================================================== //
19 using namespace std;
20 
21 
22 // =================================================================================== //
23 // CLASS DEFINITION //
24 // =================================================================================== //
49 template<int dim>
50 class Class_Octant{};
51 
52 #include "Class_Octant_3D.tpp"
53 #include "Class_Octant_2D.tpp"
54 
55 #endif /* OCTREE_HPP_ */
Octant class definition.