fsfw/datapoollocal/StaticLocalDataSet.h

30 lines
931 B
C
Raw Normal View History

2020-09-05 21:59:17 +02:00
#ifndef FSFW_DATAPOOLLOCAL_STATICLOCALDATASET_H_
#define FSFW_DATAPOOLLOCAL_STATICLOCALDATASET_H_
#include "LocalPoolDataSetBase.h"
#include "../objectmanager/SystemObjectIF.h"
2020-07-14 15:45:03 +02:00
#include <array>
2020-07-14 15:45:03 +02:00
/**
* @brief This local dataset type is created on the stack.
* @details
* Size of data set specified as a constructor argument. It is recommended
* to use the default LocalDataSet of the dataset is constructed on the heap
* and the SharedLocalDataSet if it created on the heap and used by multiple
* other software objects.
* @tparam capacity
*/
2020-07-16 11:45:23 +02:00
template <uint8_t NUM_VARIABLES>
2020-08-08 12:51:31 +02:00
class StaticLocalDataSet: public LocalPoolDataSetBase {
2020-07-16 11:45:23 +02:00
public:
2020-09-05 21:59:17 +02:00
StaticLocalDataSet(sid_t sid): LocalPoolDataSetBase(sid, nullptr,
NUM_VARIABLES) {
this->setContainer(poolVarList.data());
2020-07-16 11:45:23 +02:00
}
2020-07-14 15:45:03 +02:00
private:
2020-07-16 11:45:23 +02:00
std::array<PoolVariableIF*, NUM_VARIABLES> poolVarList;
};
2020-09-05 21:59:17 +02:00
#endif /* FSFW_DATAPOOLLOCAL_STATICLOCALDATASET_H_ */