Ignore:
Timestamp:
May 30, 2007, 12:08:56 PM (17 years ago)
Author:
chou
Message:

Morpheo Viewer Release 5.0
Réalisation des étapes 3 (fin) et 4.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/BaseV_accessors.cpp

    r26 r32  
    1919  }
    2020
     21  QList<morpheo::tools::viewer::bdd::Group> *BaseV::getGroups()
     22  {
     23    return groups;
     24  }
     25
     26  QList<morpheo::tools::viewer::bdd::LimitParam> BaseV::getLimitParam()
     27  {
     28    return limitp->values();
     29  }
     30
     31  string BaseV::getLinksrc(string name)
     32  {
     33    return link_src->value(name);
     34  }
     35  string BaseV::getLinkdest(string name)
     36  {
     37    return link_dest->value(name);
     38  }
     39
     40  int BaseV::nbGroup(string namegroup)
     41  {
     42    int i=0,j=0, res=-1;
     43    while (i!=-1)
     44      {
     45        i=listgroup->indexOf(namegroup,j);
     46        j=i+1;
     47        res++;
     48      }
     49    return res;
     50  }
     51
    2152};//end bdd
    2253};//end viewer
Note: See TracChangeset for help on using the changeset viewer.