fsfw/unittest/user/unittest/core/CatchFactory.h

17 lines
331 B
C
Raw Normal View History

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.
*/
2021-06-05 19:52:38 +02:00
void produce(void* args);
2020-10-20 17:11:23 +02:00
void setStaticFrameworkObjectIds();
}
2020-12-22 13:25:50 +01:00
#endif /* FSFW_CATCHFACTORY_H_ */