Original programm

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Revision:
6:ebe2350041f1
Child:
7:1e1e0af5d32e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DateString.h	Thu Apr 23 10:12:17 2015 +0000
@@ -0,0 +1,16 @@
+// 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
\ No newline at end of file