mirror of https://github.com/ArduPilot/ardupilot
12 lines
201 B
C
12 lines
201 B
C
|
|
||
|
#ifndef __PERIODICPROCESS_H__
|
||
|
#define __PERIODICPROCESS_H__
|
||
|
|
||
|
class AP_PeriodicProcess
|
||
|
{
|
||
|
public:
|
||
|
virtual void register_process(void (* proc)(void)) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // __PERIODICPROCESS_H__
|