#ifndef __PIN_HPP__ #define __PIN_HPP__ template struct Pin { void set(bool logic) { static_cast(this)->setImp(logic); } void toggle() { static_cast(this)->toggleImp(); } bool get(void) { return static_cast(this)->getImp(); } }; #endif // __PIN_HPP__