fsfw-example-stm32h7-freertos/bsp_stm32h7_freertos/core/ObjectFactory.h

11 lines
198 B
C
Raw Normal View History

2021-07-12 21:50:48 +02:00
#ifndef MISSION_CORE_OBJECTFACTORY_H_
#define MISSION_CORE_OBJECTFACTORY_H_
namespace ObjectFactory {
void setStatics();
2021-07-12 23:33:05 +02:00
void produce(void* args);
2021-07-12 21:50:48 +02:00
};
#endif /* MISSION_CORE_OBJECTFACTORY_H_ */