Show
Ignore:
Timestamp:
05/27/10 23:08:07 (14 years ago)
Author:
smidl
Message:

UI for ldmat - use it in egiw

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/user_info.h

    r959 r1015  
    2525#include "../shared_ptr.h" 
    2626#include "itpp/itbase.h" 
     27#include "../math/square_mat.h" 
     28#include "../math/chmat.h" 
    2729 
    2830using std::string; 
     
    302304        //! This method converts a Setting into a matrix 
    303305        static void from_setting ( mat& matrix, const Setting &element ); 
     306        //! This method converts a Setting into a ldmat 
     307        static void from_setting ( ldmat& matrix, const Setting &element ); 
    304308        //! This method converts a Setting into an integer vector 
    305309        static void from_setting ( ivec &vector, const Setting &element ); 
     
    550554        //! A matrix(of type mat) is stored in the new child Setting appended to the passed element 
    551555        static void save ( const mat &matrix, Setting &element, const string &name = "" ); 
    552  
     556         
     557        //! A matrix(of type mat) is stored in the new child Setting appended to the passed element 
     558        static void save ( const ldmat &matrix, Setting &element, const string &name = "" ); 
     559         
    553560        //! An integer vector (of type ivec) is stored in the new child Setting appended to the passed element 
    554561        static void save ( const ivec &vec, Setting &element, const string &name = "" );