From 7dae9587699dfd20615ade63ee8f7f0139adf98b Mon Sep 17 00:00:00 2001
From: kpetridis <petridkon@gmail.com>
Date: Mon, 21 Mar 2022 22:35:23 +0200
Subject: [PATCH] Added documentation

---
 inc/Helpers/ForwardControlConfiguration.hpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/inc/Helpers/ForwardControlConfiguration.hpp b/inc/Helpers/ForwardControlConfiguration.hpp
index 9e3072a8..c965601d 100644
--- a/inc/Helpers/ForwardControlConfiguration.hpp
+++ b/inc/Helpers/ForwardControlConfiguration.hpp
@@ -23,14 +23,14 @@ namespace ForwardControlConfiguration
 class ApplicationProcess {
 public:
 	/**
-	 * Empty report type vector, can both mean that we haven't added report types yet, and added all report types. To
-	 * be able to distinguish what the current 'empty' state means, we need this indicator.
+	 * Boolean values for each service type of an application process. See next documentation comment.
 	 */
 	typedef etl::map<uint8_t, bool, ECSSMaxServiceTypeDefinitions> reportsAreNotEmpty;
 
 	/**
-	 * Empty service type vector, can both mean that we haven't added service types yet, and added all service types. To
-	 * be able to distinguish what the current 'empty' state means, we need this indicator.
+	 * Indicates the meaning of a service type being empty of report types. It specifies whether the 'empty' means that
+	 * it has not been filled yet (so we proceed to add new report types) or it is empty because we accept every
+	 * report type for the service.
 	 */
 	etl::map<uint8_t, reportsAreNotEmpty, ECSSMaxControlledApplications> serviceNotEmpty;
 
-- 
GitLab