Bike-X  0.8
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Passive.h
Go to the documentation of this file.
1 #ifndef PASSIVE_H
2 #define PASSIVE_H
3 
4 #include <Device.h>
5 
6 #define PASSIVE_FILENAME "files/passive.txt"
7 
11 class Passive : public Device
12 {
13 public:
14 
18  virtual int getData(unsigned char &data) = 0;
19 
23  static int flush();
24 };
25 
26 #endif
Definition: Device.h:9
static int flush()
Definition: Passive.cpp:9
virtual int getData(unsigned char &data)=0