Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: DateString.h
- Revision:
- 0:b65c5f2413b0
diff -r 000000000000 -r b65c5f2413b0 DateString.h
--- /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