Show
Ignore:
Timestamp:
08/16/09 18:13:31 (15 years ago)
Author:
smidl
Message:

removal of unused functions _e() and samplecond(,) and added documentation lines

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/mex/mex_parser.h

    r477 r536  
    88using namespace libconfig; 
    99 
     10//! Class for writing Settings into Matlab's mxArray 
    1011class UImxArray : public Config { 
    1112public: 
     13        //! Build an instance of Config with fields filled from the given \a mxarray 
    1214        UImxArray ( const mxArray *mxarray ) : Config() { 
    1315                Setting & setting = this->getRoot(); //setting is a group 
     
    2224                setAutoConvert ( true ); 
    2325        } 
     26        //! Add libconfig's \c list to the structure 
    2427        void addList ( const mxArray *mxarray, const char* name ) { 
    2528                Setting & setting = this->getRoot(); //setting is a group 
     
    2730                fillList ( child, mxarray ); 
    2831        } 
     32        //! Add libconfig's \c group to the structure 
    2933        void addGroup ( const mxArray *mxarray, const char* name ) { 
    3034                Setting & setting = this->getRoot(); //setting is a group 
     
    3236                fillGroup ( child, mxarray ); 
    3337        } 
     38        //! Operator for more convenient access to this Confic 
    3439        operator Setting&() { 
    3540                return getRoot();