Show
Ignore:
Timestamp:
11/30/09 11:04:21 (14 years ago)
Author:
mido
Message:

mixef_init fills some data into mixef_init.out,
however, there are still some TODOs in this commit,
it is necessary to fill a few more bodies of the to_setting() method

Files:
1 modified

Legend:

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

    r744 r746  
    190190 
    191191void pdf::from_setting ( const Setting &set ) { 
     192        root::from_setting( set ); 
    192193        shared_ptr<RV> r = UI::build<RV> ( set, "rv", UI::optional ); 
    193194        if ( r ) { 
     
    199200                set_rvc ( *r ); 
    200201        } 
     202} 
     203 
     204void pdf::to_setting ( Setting &set ) const {    
     205        root::to_setting( set ); 
     206        UI::save( &rv, set, "rv" ); 
     207        UI::save( &rvc, set, "rvc" ); 
    201208} 
    202209