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:
6:ebe2350041f1
Child:
7:1e1e0af5d32e

File content as of revision 6:ebe2350041f1:

// DateString.h Version 0.3
#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

};

#endif