Storagemanager Refactoring #66

Merged
gaisser merged 10 commits from KSat/fsfw:mueller_localPoolNeat into master 2020-06-04 14:30:16 +02:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit 71e103e2b6 - Show all commits

View File

@ -1,5 +1,5 @@
#ifndef LOCALPOOL_TPP
#define LOCALPOOL_TPP
#ifndef FRAMEWORK_STORAGEMANAGER_LOCALPOOL_H_
#define FRAMEWORK_STORAGEMANAGER_LOCALPOOL_H_
template<uint8_t NUMBER_OF_POOLS>
inline LocalPool<NUMBER_OF_POOLS>::LocalPool(object_id_t setObjectId,

View File

@ -1,3 +1,6 @@
#ifndef FRAMEWORK_STORAGEMANAGER_POOLMANAGER_TPP_
#define FRAMEWORK_STORAGEMANAGER_POOLMANAGER_TPP_
template<uint8_t NUMBER_OF_POOLS>
inline PoolManager<NUMBER_OF_POOLS>::PoolManager(object_id_t setObjectId,
const uint16_t element_sizes[NUMBER_OF_POOLS],
@ -48,3 +51,5 @@ inline ReturnValue_t PoolManager<NUMBER_OF_POOLS>::modifyData(
packet_ptr, size);
return status;
}
#endif