#ifndef ELEKTROMOTOR_H #define ELEKTROMOTOR_H //#include "aktoren.h" class Elektromotor //: public aktoren { public: Elektromotor(); //~Elektromotor(); // Implementiere den Destruktor void antreiben(); // Methoden für den Motorbetrieb void stop(); void bewegezurPosition(int neu); int getPosition() const; void setGeschwindigkeit(int geschw); int getGeschwindigkeit() const; private: int geschwindigkeit; int position; }; #endif // ELEKTROMOTOR_H