Ignore:
Timestamp:
10/13/10 15:25:55 (14 years ago)
Author:
hozdoba
Message:

Début Interface c<->fortran

File:
1 edited

Legend:

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

    r130 r131  
    2020         } 
    2121 
    22          virtual string getType(void) const { return (string(this->getId())); } 
    23  
    2422         const Date& getInitDate(void) const { return(initDate); } 
    2523         Date& getCurrentDate(void) { return(currentDate); } 
     
    3836            return (NoLeapMonthLength[d.getMonth()-1]); 
    3937         } 
     38 
     39         virtual string getType(void) const { return (string(this->getId())); } 
    4040 
    4141         virtual int getYearTotalLength(const Date& d) const { return (365 * 86400); } // Retourne la durée d'une année en seconde. 
     
    7777 
    7878         AbstractCalendar(const string& _id, 
    79                           int yr = 0, int mth = 1, int d = 1, int hr = 0, int min = 0 , int sec = 0) 
     79                          int yr = 0, int mth = 1, int d   = 1, 
     80                          int hr = 0, int min = 0, int sec = 0) 
    8081            : AbstractObject(_id), 
    8182              initDate(*this, yr, mth, d, hr, min, sec), currentDate(initDate), timestep(Hour) 
Note: See TracChangeset for help on using the changeset viewer.