rtc_class2

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Revision:
11:83c6939656e5
Parent:
10:83be0e4edb52
--- a/DateString.h	Thu Apr 23 10:44:24 2015 +0000
+++ b/DateString.h	Thu Apr 30 10:54:02 2015 +0000
@@ -1,6 +1,3 @@
-// DateString.h Version 0.5
-// https://developer.mbed.org/teams/HIMBED_3AHELI/code/rtc_func/wiki/Klasse-DateString-von-Date-ableiten
-
 #include "mbed.h"
 #include "const.h"
 #include "Date.h"
@@ -8,12 +5,12 @@
 
 #ifndef DATESTRING_H
 #define DATESTRING_H
-class DateString : public Date // DateString abgeleitet von Date
+class DateString : public Date
 {
 public:
-    uint8_t GetDay();       // 2. Methode ueberschreiben
+    uint8_t GetDay();
     
-    uint8_t GetNextDay(); // 4. Definieren neuer Methoden 
+    uint8_t GetNextDay();
     using Date::GetDay;
 };