mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
14 lines
238 B
C++
14 lines
238 B
C++
|
|
#ifndef __PERIODICPROCESS_H__
|
|
#define __PERIODICPROCESS_H__
|
|
|
|
typedef void (*ap_procedure)(void);
|
|
|
|
class AP_PeriodicProcess
|
|
{
|
|
public:
|
|
virtual void register_process(void (* proc)(void)) = 0;
|
|
};
|
|
|
|
#endif // __PERIODICPROCESS_H__
|