UML to code

Files at this revision

API Documentation at this revision

Comitter:
c0ld
Date:
Thu May 07 11:02:24 2015 +0000
Commit message:
UML to code

Changed in this revision

Bertl.h Show annotated file Show diff for this revision Revisions of this file
LedBertl.h Show annotated file Show diff for this revision Revisions of this file
ur_Bertl.h Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bertl.h	Thu May 07 11:02:24 2015 +0000
@@ -0,0 +1,10 @@
+class Bertl : ur_Bertl
+{
+protected:
+    int anz;
+ 
+public:
+    int Move();
+    bool FrontIsClear();
+    bool PickBeeper(int anz);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LedBertl.h	Thu May 07 11:02:24 2015 +0000
@@ -0,0 +1,9 @@
+class LedBertl : Bertl
+{
+protected:
+    uint8_t zeit;
+ 
+public:
+    string Anzeige();
+}
+            
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ur_Bertl.h	Thu May 07 11:02:24 2015 +0000
@@ -0,0 +1,12 @@
+class ur_Bertl
+{
+protected:
+    bool error(int code);
+ 
+public:
+    ur_Bertl();
+    void Move();
+    void Move(int anz);
+    void TurnLeft();
+    void TurnOff();
+}
\ No newline at end of file