Rtc class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

DateString.h

Committer:
Andi104
Date:
2015-04-30
Revision:
6:a52551f2f398

File content as of revision 6:a52551f2f398:

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

#ifndef DATESTRING_H
#define DATESTRING_H
class DateString : public Date // DateString abgeleitet von Date
{
public:
    uint8_t GetDay();   // 2. Methode überschreiben
    uint8_t GetNextDay();
    using Date::GetDay();
    string GetDay(string str);

};
#endif