2020-10-20 17:38:41 +02:00
|
|
|
#ifndef FACTORY_H_
|
|
|
|
#define FACTORY_H_
|
|
|
|
|
|
|
|
#include <fsfw/objectmanager/SystemObjectIF.h>
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
namespace Factory {
|
|
|
|
/**
|
|
|
|
* @brief Creates all SystemObject elements which are persistent
|
|
|
|
* during execution.
|
|
|
|
*/
|
2020-12-30 22:56:46 +01:00
|
|
|
void produceFsfwObjects();
|
2020-10-20 17:38:41 +02:00
|
|
|
void setStaticFrameworkObjectIds();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* FACTORY_H_ */
|