Changeset 257 for bdm/stat

Show
Ignore:
Timestamp:
01/28/09 10:01:19 (15 years ago)
Author:
smidl
Message:

All objects have a virtual predecessor. This allows type checking in UI, see

Location:
bdm/stat
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.h

    r256 r257  
    2626 
    2727//! Root class of BDM objects 
    28 class bdmroot{}; 
     28class bdmroot{ 
     29        virtual void print(){} 
     30}; 
    2931 
    3032//! Structure of RV (used internally), i.e. expanded RVs 
  • bdm/stat/loggers.h

    r254 r257  
    2626This class abstracts logging of results from implementation. This class replaces direct logging of results (e.g. to files or to global variables) by calling methods of a logger. Specializations of this abstract class for specific storage method are designed. 
    2727*/ 
    28 class logger { 
     28class logger : public bdmroot{ 
    2929protected: 
    3030        //! RVs of all logged variables.