Changeset 408 for library/bdm/bdmroot.h

Show
Ignore:
Timestamp:
07/02/09 22:16:13 (15 years ago)
Author:
smidl
Message:

astyle preference - tabs + attach brackets

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/bdmroot.h

    r390 r408  
    2929public: 
    3030        //! make sure this is a virtual object 
    31         virtual ~root()  
    32         { 
     31        virtual ~root() { 
    3332        } 
    3433 
    3534        //! This method returns a basic info about the current instance 
    36         virtual string to_string() 
    37         { 
     35        virtual string to_string() { 
    3836                return ""; 
    3937        } 
    4038 
    4139        //! This method arrange instance properties according the data stored in the Setting structure 
    42         virtual void from_setting( const Setting &set ) 
    43         { 
     40        virtual void from_setting(const Setting &set) { 
    4441        } 
    4542 
    46         //! This method save all the instance properties into the Setting structure  
    47         virtual void to_setting( Setting &set ) const 
    48         {        
     43        //! This method save all the instance properties into the Setting structure 
     44        virtual void to_setting(Setting &set) const { 
    4945        } 
    5046 
    5147        //! This method TODO 
    52         virtual void validate() 
    53         { 
     48        virtual void validate() { 
    5449        } 
    5550};