source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/include/Param.h @ 32

Last change on this file since 32 was 32, checked in by chou, 17 years ago

Morpheo Viewer Release 5.0
Réalisation des étapes 3 (fin) et 4.

File size: 899 bytes
Line 
1#ifndef morpheo_tools_viewer_bdd_Param_h
2#define morpheo_tools_viewer_bdd_Param_h
3
4#include <iostream>
5#include <iterator>
6//#include "Tools/Viewer/Bdd/include/LimitParam.h"
7
8using namespace std;
9namespace morpheo{
10namespace tools{
11namespace viewer{
12namespace bdd{     
13
14
15  class Param
16    {
17    private:
18      string name;
19      int value;
20      string group;
21      //morpheo::tools::viewer::bdd::LimitParam *limit;
22    protected:
23
24    public:
25      /*alloc parameters list*/
26      Param(string n, int v,string g);
27      Param(Param *p);
28      /*unalloc parameters list*/
29      ~Param();
30
31      /*accessors*/
32      string getName();
33      string getGroup();
34      int getValue();
35      //morpheo::tools::viewer::bdd::LimitParam *getLimit();
36      //void setLimit(morpheo::tools::viewer::bdd::LimitParam *l);
37    };//end class Param
38
39};//end bdd
40};//end viewer
41};//end tools
42};//end morpheo
43
44#endif
Note: See TracBrowser for help on using the repository browser.