23 lines
569 B
C++
23 lines
569 B
C++
#ifndef MISSION_CORE_GENERICFACTORY_H_
|
|
#define MISSION_CORE_GENERICFACTORY_H_
|
|
|
|
#include <fsfw/objectmanager/SystemObjectIF.h>
|
|
|
|
#include "fsfw/storagemanager/StorageManagerIF.h"
|
|
|
|
class TmFunnel;
|
|
class CcsdsDistributor;
|
|
|
|
namespace ObjectFactory {
|
|
|
|
/**
|
|
* @brief Produce hardware independant objects. Called by bsp specific
|
|
* object factory.
|
|
*/
|
|
void produceGenericObjects(TmFunnel** funnel, CcsdsDistributor** ccsdsDistributor,
|
|
StorageManagerIF& tcStore);
|
|
|
|
} // namespace ObjectFactory
|
|
|
|
#endif /* MISSION_CORE_GENERICFACTORY_H_ */
|