rtc_class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

DateString.h

Committer:
wolpra98
Date:
2015-04-30
Revision:
10:83960ae8a0ee

File content as of revision 10:83960ae8a0ee:

// DateString.h
#include "mbed.h"
#include "const.h"
#include "Date.h"
#include "string"

#ifndef DATESTRING_H
#define DATESTRING_H
class DateString : public Date // Date abgeleitet von RTC8563
{
public:
    uint8_t GetDay();
    uint8_t GetMonth();
    uint8_t GetYear();
    uint8_t GetNextDay();
    using Date::GetDay;
    virtual string Date::GetDay(string str)
};

#endif