fsfw-example-common/example/core/GenericFactory.h

25 lines
663 B
C++

#ifndef MISSION_CORE_GENERICFACTORY_H_
#define MISSION_CORE_GENERICFACTORY_H_
#include <fsfw/objectmanager/SystemObjectIF.h>
#include "OBSWConfig.h"
#include "fsfw/cfdp/handler/DestHandler.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, StorageManagerIF& tmStore);
} // namespace ObjectFactory
#endif /* MISSION_CORE_GENERICFACTORY_H_ */