#ifndef __GDS_STRUCTURE_H #define __GDS_STRUCTURE_H #include #include #include using namespace std; #include "GdsElement.h" namespace IO { class GdsStructure { public: GdsStructure(string strName); bool addElement ( GdsElement* ); bool write ( ofstream &file ); inline string getName(); private: string _strName; vector _elements; }; inline string GdsStructure::getName() { return _strName; }; } #endif