SkyPulse UAV V0.1
Loading...
Searching...
No Matches
Sensor.h
Go to the documentation of this file.
1#ifndef __SENSOR_CLASS_H__
2#define __SENSOR_CLASS_H__
3
4class Sensor {
5
6public:
7
8 virtual void getData() = 0;
9
10protected:
11
12
13
14private:
15
16
17};
18
19#endif
Definition Sensor.h:4
virtual void getData()=0