source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/Group_alloc.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: 426 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/Group.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11   
12  Group::Group(string n,int value)
13  {
14    name=n;
15    levelgroup=value;
16    param=new QMap<string,morpheo::tools::viewer::bdd::Param>();
17  }
18 
19  Group::Group(Group *g)
20  {
21    *this=g;
22  }
23
24  Group::Group()
25  {
26   
27  }
28 
29};//end bdd
30};//end viewer
31};//end tools
32};//end morpheo
Note: See TracBrowser for help on using the repository browser.