MGCL V10  V10
MGCL V10
 全て クラス 名前空間 関数 変数 型定義 列挙型 列挙値 フレンド グループ ページ
CellMap.h
1 /********************************************************************/
2 /* Copyright (c) 2015 DG Technologies Inc. and Yuzi Mizuno */
3 /* All rights reserved. */
4 /********************************************************************/
5 #ifndef _MGCellMap_HH_
6 #define _MGCellMap_HH_
7 #include <map>
8 #include "mg/MGCL.h"
9 
11 
12 class MGCellNB;
13 
14 class MGCellMap{
15 public:
16  typedef std::map<const MGCellNB*, MGCellNB*> map;
17 
18  MGCellMap(){;};
19  virtual ~MGCellMap(){;};
20 
21  std::map<const MGCellNB*, MGCellNB*> m_map;
22 
23 };
24 
26 
27 #endif
CellNB is a cell without boundaries(No Boundaries).
Definition: CellNB.h:38