/* * ISolenoid.h * * Created on: Aug 7, 2018 * Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert */ #ifndef _SRC_OUTPUT_ISOLENOID_H_ #define _SRC_OUTPUT_ISOLENOID_H_ #include "output/items/IItem.h" namespace flippR_driver { namespace output { namespace items { class ISolenoid { public: ~ISolenoid() {}; virtual void trigger() = 0; }; } } } #endif