Changeset 254 for bdm/stat/libBM.h

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

create namespace bdm

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.h

    r250 r254  
    2222//#include <std> 
    2323 
     24namespace bdm{ 
    2425using namespace itpp; 
     26 
     27//! Root class of BDM objects 
     28class base{}; 
    2529 
    2630//! Structure of RV (used internally), i.e. expanded RVs 
     
    4347*/ 
    4448 
    45 class RV { 
     49class RV :base{ 
    4650protected: 
    4751        //! size = sum of sizes 
     
    135139//! Class representing function \f$f(x)\f$ of variable \f$x\f$ represented by \c rv 
    136140 
    137 class fnc { 
     141class fnc :base{ 
    138142protected: 
    139143        //! Length of the output vector 
     
    161165//! Probability density function with numerical statistics, e.g. posterior density. 
    162166 
    163 class epdf { 
     167class epdf :base { 
    164168protected: 
    165169        //! Identified of the random variable 
     
    469473*/ 
    470474 
    471 class BMcond { 
     475class BMcond :base{ 
    472476protected: 
    473477        //! Identificator of the conditioning variable 
     
    484488}; 
    485489 
     490}; //namespace 
    486491/*! @} */ 
    487492#endif // BM_H