2020-12-22 13:25:50 +01:00
|
|
|
#ifndef FSFW_CATCHFACTORY_H_
|
|
|
|
#define FSFW_CATCHFACTORY_H_
|
2020-10-20 17:11:23 +02:00
|
|
|
|
|
|
|
#include <fsfw/objectmanager/SystemObjectIF.h>
|
|
|
|
|
|
|
|
namespace Factory {
|
|
|
|
/**
|
|
|
|
* @brief Creates all SystemObject elements which are persistent
|
|
|
|
* during execution.
|
|
|
|
*/
|
|
|
|
void produce();
|
|
|
|
void setStaticFrameworkObjectIds();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-12-22 13:25:50 +01:00
|
|
|
#endif /* FSFW_CATCHFACTORY_H_ */
|