source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/Entity_accessors.cpp @ 33

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

Release 3 du viewer:
Etape 1 et 2 du projet complet et à jour.

File size: 459 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/Entity.h"
6#include <string.h>
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11
12  void Entity::setComment(string s){
13    comment=s;
14  }
15
16
17  string Entity::getComment(){ return comment;}
18 
19  string Entity::getName(){ return name;}
20  string Entity::getType(){ return type;}
21 
22  int Entity::getSchema(){return schema;}
23 
24};//end bdd
25};//end viewer
26};//end tools
27};//end morpheo
Note: See TracBrowser for help on using the repository browser.