msbGrid  1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cell.hh
Go to the documentation of this file.
1 /*****************************************************************************
2 * This program is part of the msbGrid software *
3 * *
4 * msbGrid stands for multi-structured block Grid generator *
5 * *
6 * msbGrid is a free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * msbGrid is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * See the file COPYING for full copying permissions. *
17 *****************************************************************************/
23 #ifndef _CELL_HH_
24 #define _CELL_HH_
25 
26 #include <geometricentity.hh>
27 
28 class msbGrid :: Cell : public msbGrid :: GeometricEntity
29 {
30 public:
32 
33 public:
34  Cell() : ParentT()
35  {
36  this->vCel_.push_back(this);
37  }
38 
39  ~Cell() {}
40 };
41 
42 #endif /* #ifndef _CELL_HH_ */