eive-obsw/mission/system/objects/EiveSystem.h
Robin Mueller 3759b5d34a
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
I am happy with this version
2023-02-13 01:26:30 +01:00

15 lines
362 B
C++

#ifndef MISSION_SYSTEM_EIVESYSTEM_H_
#define MISSION_SYSTEM_EIVESYSTEM_H_
#include <fsfw/subsystem/Subsystem.h>
class EiveSystem : public Subsystem {
public:
EiveSystem(object_id_t setObjectId, uint32_t maxNumberOfSequences, uint32_t maxNumberOfTables);
private:
void announceMode(bool recursive) override;
};
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */