#ifndef __PIN_HPP__ #define __PIN_HPP__ template struct Pin { void write(bool logic) { static_cast(this)->writeImpl(logic); } }; #endif // __PIN_HPP__