Ignore:
Timestamp:
10/07/10 10:29:38 (14 years ago)
Author:
hozdoba
Message:

Amélioration de quelques portions de code.
Ajout de contructeurs par copie.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/XMLIO/axis_attribut.hpp

    r120 r126  
    1010      public : 
    1111 
    12          DECLARE_ATTR(name, string) ; 
    13          DECLARE_ATTR(description, string) ; 
    14          DECLARE_ATTR(unit, string) ; 
    15          DECLARE_ATTR(size, int) ; 
    16          DECLARE_ATTR(value, Array(double,1)) ; 
     12         DECLARE_ATTR(name          , string) ; 
     13         DECLARE_ATTR(standard_name , string) ; 
     14         DECLARE_ATTR(long_name     , string) ; 
     15 
     16         DECLARE_ATTR(unit          , string) ; 
     17         DECLARE_ATTR(size          , int) ; 
     18         DECLARE_ATTR(value         , Array(double, 1)) ; 
    1719 
    1820         AxisAttribut(void) : AttributRegistrar() 
    19          { registerAllAttributes(); } 
     21         { this->registerAllAttributes(); } 
    2022 
    2123      private : 
     
    2426         { 
    2527            RegisterAttribut(&name) ; 
    26             RegisterAttribut(&description) ; 
     28            RegisterAttribut(&standard_name) ; 
     29            RegisterAttribut(&long_name) ; 
    2730            RegisterAttribut(&unit) ; 
    2831            RegisterAttribut(&size) ; 
Note: See TracChangeset for help on using the changeset viewer.