eive-obsw/mission/system/objects/EiveSystem.h
Robin Mueller f014e2d5c7
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
system folder restructuring
2022-04-25 10:36:03 +02:00

15 lines
349 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, object_id_t parent, uint32_t maxNumberOfSequences,
uint32_t maxNumberOfTables);
private:
};
#endif /* MISSION_SYSTEM_EIVESYSTEM_H_ */