source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/LimitParam_alloc.cpp @ 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: 467 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 
13  LimitParam::LimitParam(string na,int mn,int mx,string sp,int de,int lvl)
14  {
15    name=na;
16    min=mn;
17    max=mx;
18    step=sp;
19    defaut=de;
20    level=lvl;
21 
22  }
23  LimitParam::LimitParam(){}
24
25  LimitParam::LimitParam(LimitParam *l){
26  *this=l;
27  }
28
29   
30};//end bdd
31};//end viewer
32};//end tools
33};//end morpheo
Note: See TracBrowser for help on using the repository browser.