mirror of https://github.com/ArduPilot/ardupilot
12 lines
160 B
C
12 lines
160 B
C
|
|
||
|
#ifndef __ANALOG_SOURCE_H__
|
||
|
#define __ANALOG_SOURCE_H__
|
||
|
|
||
|
class AP_AnalogSource
|
||
|
{
|
||
|
public:
|
||
|
virtual int read(void) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // __ANALOG_SOURCE_H__
|