source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/BaseV_searchComponent.cpp @ 30

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

Morpheo Viewer Release 4.0 :
changements graphiques .

File size: 422 bytes
Line 
1
2 /*
3 *
4 * [desc.]
5 */
6#include "Tools/Viewer/Bdd/include/BaseV.h"
7
8namespace morpheo{
9namespace tools{
10namespace viewer{
11namespace bdd{   
12
13  morpheo::tools::viewer::bdd::BaseP BaseV::get_BasePos(string v){ 
14    int tmp=listcomp->indexOf(v,0);
15    if(tmp==-1){
16      cout << "not found\n";
17      return NULL;
18    }
19    else
20      return pos->operator[](tmp);
21  }
22
23};//end bdd
24};//end viewer
25};//end tools
26};//end morpheo
Note: See TracBrowser for help on using the repository browser.