Show
Ignore:
Timestamp:
09/06/09 22:53:06 (15 years ago)
Author:
smidl
Message:

change of syntax of RV

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.cpp

    r600 r604  
    1818        NAMES = Array<string> ( BUFFER_STEP ); 
    1919} 
     20 
     21string RV::show_all(){ 
     22  ostringstream os; 
     23  for(str2int_map::const_iterator iter=MAP.begin(); iter!=MAP.end(); iter++){ 
     24          os << "key: " << iter->first << " val: " << iter->second <<endl; 
     25  } 
     26  return os.str(); 
     27}; 
    2028 
    2129int RV::init ( const string &name, int size ) { 
     
    127135} 
    128136 
    129 void RV::t ( int delta ) { 
     137void RV::t_plus ( int delta ) { 
    130138        times += delta; 
    131139}