Robin Mueller
f014e2d5c7
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
15 lines
349 B
C++
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_ */
|