mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-07 08:28:30 -04:00
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__
|