#ifndef _AKTUATOR_H #define _AKTUATOR_H #include "../../stdafx.h" class Aktuator : public IO_Module { public: Aktuator() { this->parent = NULL; this->moduleId = 0; } Aktuator(uint32 aktuatorId) { this->parent = NULL; this->moduleId = aktuatorId; } protected: public: void Kick(); }; #endif