eive-obsw/mission/core/GenericFactory.h
Robin Mueller 3965c08bfb
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
add misc store
2022-12-13 14:19:43 +01:00

18 lines
421 B
C++

#ifndef MISSION_CORE_GENERICFACTORY_H_
#define MISSION_CORE_GENERICFACTORY_H_
#include <mission/memory/SdCardMountedIF.h>
class HealthTableIF;
class PusTmFunnel;
class CfdpTmFunnel;
namespace ObjectFactory {
void produceGenericObjects(HealthTableIF** healthTable, PusTmFunnel** pusFunnel,
CfdpTmFunnel** cfdpFunnel, SdCardMountedIF& sdcMan);
}
#endif /* MISSION_CORE_GENERICFACTORY_H_ */