Bertl Programm
Revision 1:6f0042c58757, committed 2015-05-07
- Comitter:
- Cartillius
- Date:
- Thu May 07 11:17:14 2015 +0000
- Parent:
- 0:966e95e315e0
- Commit message:
- add cpp files
Changed in this revision
diff -r 966e95e315e0 -r 6f0042c58757 Bertl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Bertl.cpp Thu May 07 11:17:14 2015 +0000 @@ -0,0 +1,19 @@ +#include "Bertl.h" + +class Bertl : ur_Bertl +{ + int anz; + + int Move() + { + return 0; + } + bool FrontIsClear() + { + return 0; + } + bool PickBeeper(int anz) + { + return 0; + } +}; \ No newline at end of file
diff -r 966e95e315e0 -r 6f0042c58757 Bertl.h --- a/Bertl.h Thu May 07 10:14:52 2015 +0000 +++ b/Bertl.h Thu May 07 11:17:14 2015 +0000 @@ -11,5 +11,5 @@ int Move(); bool FrontIsClear(); bool PickBeeper(int anz); -} +}; #endif \ No newline at end of file
diff -r 966e95e315e0 -r 6f0042c58757 LedBertl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LedBertl.cpp Thu May 07 11:17:14 2015 +0000 @@ -0,0 +1,9 @@ +#include "LedBertl.h" + +uint8_t zeit; + + string Anzeige() + { + return null; + } +}; \ No newline at end of file
diff -r 966e95e315e0 -r 6f0042c58757 LedBertl.h --- a/LedBertl.h Thu May 07 10:14:52 2015 +0000 +++ b/LedBertl.h Thu May 07 11:17:14 2015 +0000 @@ -9,5 +9,5 @@ public: string Anzeige(); -} +}; #endif \ No newline at end of file
diff -r 966e95e315e0 -r 6f0042c58757 ur_Bertl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ur_Bertl.cpp Thu May 07 11:17:14 2015 +0000 @@ -0,0 +1,24 @@ +#include "ur_Bertl.h" + +class ur_Bertl +{ + ur_Bertl() + { + } + void Move() + { + } + void Move(int anz) + { + } + void TurnLeft() + { + } + void TurnOff() + { + } + bool error(int code) + { + return 0; + } +}; \ No newline at end of file
diff -r 966e95e315e0 -r 6f0042c58757 ur_Bertl.h --- a/ur_Bertl.h Thu May 07 10:14:52 2015 +0000 +++ b/ur_Bertl.h Thu May 07 11:17:14 2015 +0000 @@ -11,5 +11,5 @@ void Move(int anz); void TurnLeft(); void TurnOff(); -} +}; #endif \ No newline at end of file