vererbung

Dependencies:   RTC8563 mbed

Revision:
0:b65c5f2413b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DateString.h	Thu Apr 30 10:13:44 2015 +0000
@@ -0,0 +1,18 @@
+#include "mbed.h"
+#include "const.h"
+#include "Date.h"
+#include "string"
+ 
+#ifndef DATESTRING_H
+#define DATESTRING_H
+
+class DateString : public Date
+{
+    public:
+        uint8_t GetDay();
+        
+        uint8_t GetNextDay();   // Definition neuer Methode
+        using Date::GetDay;
+        string GetDay(string str);
+};
+#endif
\ No newline at end of file