this seems to work
This commit is contained in:
@ -4,8 +4,8 @@
|
||||
#include <fsfw/objectmanager/ObjectManager.h>
|
||||
#include <fsfw/serviceinterface/ServiceInterface.h>
|
||||
|
||||
TestController::TestController(object_id_t objectId, object_id_t parentId, size_t commandQueueDepth)
|
||||
: ExtendedControllerBase(objectId, parentId, commandQueueDepth) {}
|
||||
TestController::TestController(object_id_t objectId, size_t commandQueueDepth)
|
||||
: ExtendedControllerBase(objectId, commandQueueDepth) {}
|
||||
|
||||
TestController::~TestController() {}
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
class TestController : public ExtendedControllerBase {
|
||||
public:
|
||||
TestController(object_id_t objectId, object_id_t parentId, size_t commandQueueDepth = 10);
|
||||
TestController(object_id_t objectId, size_t commandQueueDepth = 10);
|
||||
virtual ~TestController();
|
||||
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user