27 lines
756 B
C++
27 lines
756 B
C++
#ifndef BSP_Q7S_OBJECTFACTORY_H_
|
|
#define BSP_Q7S_OBJECTFACTORY_H_
|
|
|
|
class LinuxLibgpioIF;
|
|
|
|
namespace ObjectFactory {
|
|
|
|
void setStatics();
|
|
void produce(void* args);
|
|
|
|
void createCommunicationInterfaces(LinuxLibgpioIF** gpioComIF);
|
|
void createTmpComponents();
|
|
void createPcduComponents();
|
|
void createRadSensorComponent(LinuxLibgpioIF* gpioComIF);
|
|
void createSunSensorComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createAcsBoardComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createHeaterComponents();
|
|
void createSolarArrayDeploymentComponents();
|
|
void createSyrlinksComponents();
|
|
void createRtdComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createReactionWheelComponents(LinuxLibgpioIF* gpioComIF);
|
|
void createTestComponents();
|
|
|
|
};
|
|
|
|
#endif /* BSP_Q7S_OBJECTFACTORY_H_ */
|