3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

LocalDate/LocalDate.h

Committer:
niallfrancis
Date:
2017-05-13
Revision:
85:422d0a1b95cf
Parent:
83:0d3572a8a851

File content as of revision 85:422d0a1b95cf:

#ifndef LOCALDATE_H
#define LOCALDATE_H

class LocalDate
{
    public:
        int day;
        int month;
        int year;
        int hour;
        int min;
        int sec;
        
        LocalDate (int d, int m , int y,int h,int mm,int s);
        LocalDate ();
        LocalDate(LocalDate *localDate);
        
        void TickSecond();
        char *ToString();
        void setValues(LocalDate *localDate);
};
#endif