Things/things/Device.h

13 lines
237 B
C
Raw Normal View History

2016-04-08 08:18:59 +00:00
#ifndef DEVICE_H
#define DEVICE_H
class Device {
public:
// purely virtual functions, need to be implemented
2016-04-10 22:29:05 +00:00
virtual void deviceSetup() = 0;
virtual void deviceRegister() = 0;
virtual void deviceLoop() = 0;
2016-04-08 08:18:59 +00:00
};
#endif