Robin Mueller
3965c08bfb
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
18 lines
421 B
C++
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_ */
|