functions from rtc_func transferred to class RTC8563

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

Goto Inhalt

Revision:
8:54a6f83a2339
Parent:
7:1e1e0af5d32e
Child:
9:83be0e4edb52
diff -r 1e1e0af5d32e -r 54a6f83a2339 DateString.h
--- a/DateString.h	Thu Apr 23 10:14:42 2015 +0000
+++ b/DateString.h	Thu Apr 23 10:43:38 2015 +0000
@@ -1,4 +1,4 @@
-// DateString.h Version 0.3
+// DateString.h Version 0.4
 // https://developer.mbed.org/teams/HIMBED_3AHELI/code/rtc_func/wiki/Klasse-DateString-von-Date-ableiten
 
 #include "mbed.h"
@@ -11,8 +11,10 @@
 class DateString : public Date // DateString abgeleitet von Date
 {
 public:
-    uint8_t GetDay();   // 2. Methode ueberschreiben
-
+    uint8_t GetDay();       // 2. Methode ueberschreiben
+    
+    uint8_t GetNextDay(); // 4. Definieren neuer Methoden 
+    using Date::GetDay;
 };
 
 #endif
\ No newline at end of file