source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/include/Architecture.h @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 931 bytes
Line 
1#ifndef morpheo_tools_viewer_bdd_Architecture_h
2#define morpheo_tools_viewer_bdd_Architecture_h
3
4#include <iostream>
5#include <list>
6#include <iterator>
7#include "Tools/Viewer/Bdd/include/Component.h"
8#include <qlist.h>
9using namespace std;
10namespace morpheo{
11namespace tools{
12namespace viewer{
13namespace bdd{     
14
15  class Architecture
16    {
17    private:
18      string comment;
19      QList<morpheo::tools::viewer::bdd::Component> *components;
20      QList<string> *listcomp;
21           
22    public:
23      string getComment();
24      QList<morpheo::tools::viewer::bdd::Component> *getComponent();
25      morpheo::tools::viewer::bdd::Component getComponent(string v);
26      ~Architecture();
27      Architecture();
28     
29      void setComment(string s);
30      void addComponent(morpheo::tools::viewer::bdd::Component *c,string type);
31 
32
33    };//end class Architecture
34
35};//end bdd
36};//end viewer
37};//end tools
38};//end morpheo
39
40#endif
Note: See TracBrowser for help on using the repository browser.