Robin Mueller
96865c1dd2
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
27 lines
906 B
C++
27 lines
906 B
C++
#ifndef MISSION_TMTC_PERSISTENTLOGTMSTORETASK_H_
|
|
#define MISSION_TMTC_PERSISTENTLOGTMSTORETASK_H_
|
|
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
|
#include <fsfw/storagemanager/StorageManagerIF.h>
|
|
#include <fsfw/tasks/ExecutableObjectIF.h>
|
|
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
|
|
#include <mission/tmtc/PersistentTmStore.h>
|
|
#include <mission/tmtc/PersistentTmStoreWithTmQueue.h>
|
|
#include <mission/tmtc/VirtualChannelWithQueue.h>
|
|
|
|
struct LogStores {
|
|
PersistentTmStoreWithTmQueue& okStore;
|
|
PersistentTmStoreWithTmQueue& notOkStore;
|
|
PersistentTmStoreWithTmQueue& miscStore;
|
|
};
|
|
|
|
class PersistentLogTmStoreTask : public SystemObject, public ExecutableObjectIF {
|
|
public:
|
|
PersistentLogTmStoreTask(object_id_t objectId, StorageManagerIF& ipcStore, LogStores tmStore,
|
|
VirtualChannelWithQueue& channel);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif /* MISSION_TMTC_PERSISTENTLOGTMSTORETASK_H_ */
|