UML into Header

Committer:
Gandalf_The_Great
Date:
Thu May 07 10:40:44 2015 +0000
Revision:
0:9360b875cb23
Child:
1:873d94ea7daa
UML into header

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Gandalf_The_Great 0:9360b875cb23 1 class ur_Bertl {
Gandalf_The_Great 0:9360b875cb23 2 public:
Gandalf_The_Great 0:9360b875cb23 3 void Move();
Gandalf_The_Great 0:9360b875cb23 4 void Move(int anz);
Gandalf_The_Great 0:9360b875cb23 5 void TurnLeft();
Gandalf_The_Great 0:9360b875cb23 6 void TurnOff();
Gandalf_The_Great 0:9360b875cb23 7 protected:
Gandalf_The_Great 0:9360b875cb23 8 bool error(int code);
Gandalf_The_Great 0:9360b875cb23 9
Gandalf_The_Great 0:9360b875cb23 10 class Bertl : ur_Bertl {
Gandalf_The_Great 0:9360b875cb23 11 protected:
Gandalf_The_Great 0:9360b875cb23 12 int anzahl;
Gandalf_The_Great 0:9360b875cb23 13 public:
Gandalf_The_Great 0:9360b875cb23 14 int Move();
Gandalf_The_Great 0:9360b875cb23 15 bool FrontIsClear();
Gandalf_The_Great 0:9360b875cb23 16 bool PickBeeper(int anz) ;
Gandalf_The_Great 0:9360b875cb23 17
Gandalf_The_Great 0:9360b875cb23 18 class LedBertl : Bertl{
Gandalf_The_Great 0:9360b875cb23 19 protected :
Gandalf_The_Great 0:9360b875cb23 20 uint8_t zeit;
Gandalf_The_Great 0:9360b875cb23 21 Public:
Gandalf_The_Great 0:9360b875cb23 22 string Anzeige();
Gandalf_The_Great 0:9360b875cb23 23