source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/BaseV_afficheLimitParamConsole.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: 681 bytes
Line 
1/*
2 *
3 * [BaseV_afficheLimitParamConsole]
4 * debug : show contents of generation file in memory
5 */
6#include "Tools/Viewer/Bdd/include/BaseV.h"
7
8namespace morpheo{
9namespace tools{
10namespace viewer{
11namespace bdd{     
12  void BaseV::afficheLimitParamConsole(){
13   
14 
15    for(QMap<string,morpheo::tools::viewer::bdd::LimitParam>::iterator it=limitp->begin();it!=limitp->end();++it)
16      {
17       
18        cout << "-------------- LimitParam ------------------" << endl;
19        cout <<"name :" << it->getName() <<endl;
20        cout << "level :" << it->getLevel() <<endl;
21        cout << "group :" << it->getGroup() <<endl;
22       
23     
24       
25      }//for
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.