Source: ./Movement/RobotMoverRep.h
|
|
|
|
#ifndef ROBOTMOVERREP_H
#define ROBOTMOVERREP_H
#include "Detector.h"
namespace Movement {
/** Martin liikuttajan sisäinen toteutus. */
class RobotMoverRep : public Nobel::SelfTestingObject {
public:
/** Viite havaitsijaolioon. */
Detector& d;
/** Onko pakki päällä. */
bool inReverse;
/** Invariantin tarkistus.
* @return true
*/
virtual bool invariant() const {
return true;
}
/** Konstruktori.
* @param nd havaitsinolio
* @param b pakin asetus
*/
RobotMoverRep(Detector& nd, bool b) : d(nd), inReverse(b) { }
/** Destruktori. */
virtual ~RobotMoverRep() { }
};
}
#endif
Generated by: hoppq@ilenkone on Thu Mar 1 15:43:18 2001, using kdoc 2.0a50. |