source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/include/Entity.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: 766 bytes
Line 
1#ifndef morpheo_tools_viewer_bdd_Entity_h
2#define morpheo_tools_viewer_bdd_Entity_h
3
4#include <iostream>
5#include <list>
6#include <iterator>
7#include "Tools/Viewer/Bdd/include/ListePorts.h"
8#include <qlist.h>
9
10using namespace std;
11namespace morpheo{
12namespace tools{
13namespace viewer{
14namespace bdd{     
15
16  class Entity:public ListePorts
17    {
18    private:
19      string name;
20      string type;
21      string comment;
22   
23      int schema;
24   
25   
26    protected:
27     
28    public:
29      Entity(string n,string t,int l);
30      ~Entity();
31      string getComment();
32      string getName();
33      string getType();
34      void setComment(string s);
35      int getSchema();
36
37
38
39    };//end class Entity
40
41};//end bdd
42};//end viewer
43};//end tools
44};//end morpheo
45
46#endif
Note: See TracBrowser for help on using the repository browser.