13 lines
266 B
C
13 lines
266 B
C
|
#ifndef DUMMIES_GPSCTRLDUMMY_H_
|
||
|
#define DUMMIES_GPSCTRLDUMMY_H_
|
||
|
|
||
|
#include <fsfw/controller/ExtendedControllerBase.h>
|
||
|
|
||
|
class GpsCtrlDummy: public ExtendedControllerBase {
|
||
|
public:
|
||
|
GpsCtrlDummy(object_id_t objectId);
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif /* DUMMIES_GPSCTRLDUMMY_H_ */
|