00001 #ifndef _GMEGRAPH_H_
00002 #define _GMEGRAPH_H_
00003
00004 #include "Graph.h"
00005 #include "ComponentLib.h"
00006
00007 class GMEGraph : public Graph
00008 {
00009 public:
00010 GMEGraph ( IMgaProject *project, IMgaModel* model, IMgaMetaAspect* aspect );
00011
00012 ~GMEGraph ();
00013
00014 private:
00015 void fillNodes ( IMgaProject *project, IMgaParts* parts );
00016
00017 void fillConnections ( IMgaProject *project, IMgaParts* parts );
00018
00019 Node * findFCO ( IMgaFCO * fco );
00020
00021 void setRoutingPrefs ( Edge * edge, CString connPrefs );
00022
00023 };
00024
00025 #endif // _GMEGRAPH_H_