1
0
forked from fsfw/fsfw

reverted some stuff

This commit is contained in:
2021-01-11 22:18:42 +01:00
parent 037bd83af9
commit 5bc46bae02
6 changed files with 21 additions and 15 deletions

View File

@ -43,8 +43,7 @@ class PeriodicHousekeepingHelper;
* @ingroup data_pool
*/
class LocalPoolDataSetBase: public PoolDataSetBase,
public MarkChangedIF,
public AccessLocalDataPoolIF {
public MarkChangedIF {
friend class LocalDataPoolManager;
friend class PeriodicHousekeepingHelper;
public:
@ -54,7 +53,7 @@ public:
* This constructor also initializes the components required for
* periodic handling.
*/
LocalPoolDataSetBase(AccessLocalDataPoolIF *hkOwner,
LocalPoolDataSetBase(HasLocalDataPoolIF *hkOwner,
uint32_t setId, PoolVariableIF** registeredVariablesArray,
const size_t maxNumberOfVariables, bool periodicHandling = true);
@ -220,7 +219,7 @@ protected:
bool bitGetter(const uint8_t* byte, uint8_t position) const;
PeriodicHousekeepingHelper* periodicHelper = nullptr;
AccessLocalDataPoolIF* hkManager = nullptr;
LocalDataPoolManager* hkManager = nullptr;
};