eive-obsw/linux/ObjectFactory.h
Robin Mueller 2410c6ccc6
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
added SUS component creation to RPi
2022-03-26 16:38:42 +01:00

15 lines
265 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);
}