#ifndef morpheo_tools_viewer_bdd_Architecture_h #define morpheo_tools_viewer_bdd_Architecture_h #include #include #include #include "Tools/Viewer/Bdd/include/Component.h" #include using namespace std; namespace morpheo{ namespace tools{ namespace viewer{ namespace bdd{ class Architecture { private: string comment; QList *components; QList *listcomp; public: string getComment(); QList *getComponent(); morpheo::tools::viewer::bdd::Component getComponent(string v); ~Architecture(); Architecture(); void setComment(string s); void addComponent(morpheo::tools::viewer::bdd::Component *c,string type); };//end class Architecture };//end bdd };//end viewer };//end tools };//end morpheo #endif