16 lines
No EOL
194 B
C++
16 lines
No EOL
194 B
C++
#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
|