/********************************************************************/ /* Copyright (c) 2017 System fugen G.K. and Yuzi Mizuno */ /* All rights reserved. */ /********************************************************************/ #ifndef _MGCellMap_HH_ #define _MGCellMap_HH_ #include #include "mg/MGCL.h" ///@cond class MGCellNB; class MGCellMap{ public: typedef std::map map; MGCellMap(){;}; virtual ~MGCellMap(){;}; std::map m_map; }; ///@endcond #endif