OpenFPM_data  0.1.0
Project that contain the implementation and interfaces for basic structure like vectors, grids, graph ... .
 All Data Structures Namespaces Functions Variables Typedefs Friends
CellKey.hpp
1 /*
2  * CellKey.hpp
3  *
4  * Created on: Mar 26, 2015
5  * Author: i-bird
6  */
7 
8 #ifndef CELLKEY_HPP_
9 #define CELLKEY_HPP_
10 
11 
12 class CellKey
13 {
14  // Id of the cell
15  size_t CellId;
16  // element id inside the cell
17  size_t ele_id;
18 };
19 
20 
21 #endif /* CELLKEY_HPP_ */