#ifndef DEVICE_H #define DEVICE_H class Device { public: Device(); bool test(); virtual unsigned char read(); virtual void write(unsigned char value); }; #endif // DEVICE_H