diff --git a/inc/Services/FunctionManagementService.hpp b/inc/Services/FunctionManagementService.hpp index 3060989f3c8557ea4496d478624fadce424f4769..012f1df11ca35d8536c0e68cb5841d97ca54a66b 100644 --- a/inc/Services/FunctionManagementService.hpp +++ b/inc/Services/FunctionManagementService.hpp @@ -9,6 +9,7 @@ #include "etl/map.h" #include "etl/String.hpp" #include "Message.hpp" +#include "Service.hpp" #define FUNCMAPSIZE 128 // size of the function map in bytes (temporary, arbitrary) #define MAXFUNCNAMELENGTH 32 // max length of the function name (temporary, arbitrary) @@ -40,7 +41,7 @@ typedef String<MAXFUNCNAMELENGTH> functionName; typedef etl::map<functionName, void(*)(String<MAXARGLENGTH>), FUNCMAPSIZE> PointerMap; -class FunctionManagementService { +class FunctionManagementService : public Service { /** * Map of the function names to their respective pointers. Size controlled by FUNCMAPSIZE */