source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/LimitParam_accessors.cpp @ 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: 650 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/LimitParam.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11   
12  string LimitParam::getName()
13  {
14    return name;
15  }
16  int LimitParam::getMin()
17  {
18    return min;
19  }
20  int LimitParam::getMax()
21  {
22    return max;
23  }
24  string LimitParam::getStep()
25  {
26    return step;
27  }
28  int LimitParam::getDefault()
29  {
30    return defaut;
31  }
32  int LimitParam::getLevel()
33  {
34    return level;
35  }
36  string LimitParam::getGroup()
37  {
38    return group;
39  }
40  void LimitParam::setGroup(string s)
41  {
42    group=s;
43  }
44};//end bdd
45};//end viewer
46};//end tools
47};//end morpheo
Note: See TracBrowser for help on using the repository browser.