.idea
automation
bsp_hosted
core
CMakeLists.txt
InitMission.cpp
InitMission.h
ObjectFactory.cpp
ObjectFactory.h
fsfwconfig
utility
CMakeLists.txt
main.cpp
cmake
example_common
fsfw
generators
misc
scripts
tmtc
.clang-format
.gitignore
.gitmodules
CMakeLists.txt
Justfile
LICENSE
NOTICE
README.md
docker-compose.yml
12 lines
225 B
C++
12 lines
225 B
C++
#ifndef MISSION_CORE_OBJECTFACTORY_H_
|
|
#define MISSION_CORE_OBJECTFACTORY_H_
|
|
|
|
namespace ObjectFactory {
|
|
|
|
void setStatics();
|
|
void produce(void* args);
|
|
|
|
}; // namespace ObjectFactory
|
|
|
|
#endif /* MISSION_CORE_OBJECTFACTORY_H_ */
|