Changeset 325 for bdm

Show
Ignore:
Timestamp:
04/23/09 23:29:54 (15 years ago)
Author:
smidl
Message:

Barcelona work...

Location:
bdm
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • bdm/estim/KF_ui.h

    r289 r325  
    3939                RV* rv; UIbuild(S["rv"],rv); 
    4040                E->set_rv(*rv); 
     41                 
     42                if (S.exists("options")){E->set_options(S["options"]);}; 
     43                 
    4144                return E; 
    4245        }        
  • bdm/stat/libBM.h

    r317 r325  
    700700 
    701701        //! Set boolean options from a string 
    702         void set_options ( const string &opt ) { 
     702        virtual void set_options ( const string &opt ) { 
    703703                opt_L_bounds= ( opt.find ( "logbounds" ) !=string::npos ); 
    704704        } 
  • bdm/uibuilder.h

    r281 r325  
    125125        //! Function building the computational object 
    126126        virtual bdmroot* build ( Setting &S ) const =0; 
     127        //! Virtual destructor for future use; 
     128        virtual ~UIbuilder(){}; 
    127129}; 
    128130