functions from rtc_func transferred to class RTC8563

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

Goto Inhalt

DateString.h

Committer:
bulmecisco
Date:
2015-04-23
Revision:
9:83be0e4edb52
Parent:
8:54a6f83a2339
Child:
11:83c6939656e5

File content as of revision 9:83be0e4edb52:

// DateString.h Version 0.5
// https://developer.mbed.org/teams/HIMBED_3AHELI/code/rtc_func/wiki/Klasse-DateString-von-Date-ableiten

#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 ueberschreiben
    
    uint8_t GetNextDay(); // 4. Definieren neuer Methoden 
    using Date::GetDay;
};

#endif