eive-obsw/linux/ObjectFactory.h
Robin Mueller 33ec092998
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
ported RTD code as well
2022-03-31 17:58:16 +02:00

16 lines
386 B
C++

#pragma once
#include <string>
class GpioIF;
class SpiComIF;
class PowerSwitchIF;
namespace ObjectFactory {
void createSunSensorComponents(GpioIF* gpioComIF, SpiComIF* spiComIF, PowerSwitchIF* pwrSwitcher,
std::string spiDev);
void createRtdComponents(std::string spiDev, GpioIF* gpioComIF, PowerSwitchIF* pwrSwitcher);
} // namespace ObjectFactory