Changeset 263 for bdm/stat/libBM.cpp

Show
Ignore:
Timestamp:
02/09/09 23:11:35 (15 years ago)
Author:
smidl
Message:

UIArxDS test

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.cpp

    r262 r263  
    5151 
    5252RV::RV() : tsize ( 0 ), len ( 0 ), ids ( 0 ),  sizes ( 0 ), times ( 0 ),names ( 0 ) {}; 
     53 
     54RV::RV(string name, int id){ 
     55        it_assert(id>=RVcounter,"RV::This id is already taken"); 
     56        RVcounter=id; 
     57        Array<string> A(1); A(0)=name; 
     58        init(vec_1(id),A,vec_1(1),vec_1(0)); 
     59} 
    5360 
    5461bool RV::add ( const RV &rv2 ) {