From d4b08459f4e27441181d068dcbeb903eec325578 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 18 Jan 2021 19:49:15 +0100 Subject: [PATCH] smaller changes and documentation --- action/ActionMessage.cpp | 3 ++- action/ActionMessage.h | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/action/ActionMessage.cpp b/action/ActionMessage.cpp index 4e56feea..1c00dee0 100644 --- a/action/ActionMessage.cpp +++ b/action/ActionMessage.cpp @@ -1,5 +1,6 @@ -#include #include "ActionMessage.h" +#include "HasActionsIF.h" + #include "../objectmanager/ObjectManagerIF.h" #include "../storagemanager/StorageManagerIF.h" diff --git a/action/ActionMessage.h b/action/ActionMessage.h index 7a859de0..be7116d7 100644 --- a/action/ActionMessage.h +++ b/action/ActionMessage.h @@ -4,8 +4,15 @@ #include "../ipc/CommandMessage.h" #include "../objectmanager/ObjectManagerIF.h" #include "../storagemanager/StorageManagerIF.h" -typedef uint32_t ActionId_t; +using ActionId_t = uint32_t; + +/** + * @brief These messages are part of the action module of the FSFW. + * @details + * These messages are sent amongst objects implementing the HasActionsIF. The ActionHelper + * class is able to process these messages. + */ class ActionMessage { private: ActionMessage();