14 lines
302 B
C++
14 lines
302 B
C++
#ifndef CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
#define CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
|
|
#include <fsfw/datapool/DataPool.h>
|
|
|
|
namespace datapool{
|
|
void dataPoolInit(std::map<uint32_t, PoolEntryIF*>* poolMap);
|
|
|
|
enum datapoolvariables {
|
|
NO_PARAMETER = 0,
|
|
};
|
|
}
|
|
#endif /* CONFIG_CDATAPOOL_DATAPOOLINIT_H_ */
|