source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/BaseV_searchGroup.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: 418 bytes
Line 
1/*
2 *
3 *
4 */
5#include "Tools/Viewer/Bdd/include/BaseV.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11   
12  morpheo::tools::viewer::bdd::Group BaseV::searchGroup(string v) {
13    int index=listgroup->indexOf(v,0);
14    if(index==-1)
15      return Group(NULL,0);
16    else
17      return groups->operator[](index);
18   
19  } 
20 
21 
22   
23};//end bdd
24};//end viewer
25};//end tools
26};//end morpheo
Note: See TracBrowser for help on using the repository browser.