Rtc class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Revision:
6:a52551f2f398
diff -r fc8c66a7c87a -r a52551f2f398 DateString.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DateString.h	Thu Apr 30 10:48:30 2015 +0000
@@ -0,0 +1,18 @@
+// 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
\ No newline at end of file