Changeset 339
- Timestamp:
- 05/13/09 19:15:58 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
bdm/stat/libBM.h
r338 r339 21 21 using namespace itpp; 22 22 using namespace std; 23 using namespace libconfig; 23 24 24 25 //! Root class of BDM objects … … 27 28 //! make sure this is a virtual object 28 29 virtual ~bdmroot() {} 30 31 //! This method arrange instance properties according the data stored in the Setting structure 32 virtual void FromSetting( Setting &element ) 33 { 34 } 35 36 //! This method save all the instance properties into the Setting structure 37 virtual void ToSetting( Setting &element ) 38 { 39 } 29 40 }; 30 41 … … 739 750 }; 740 751 752 741 753 }; //namespace 742 754 #endif // BM_H