OMOTE/Platformio/HAL/HardwareFactory.hpp

12 lines
250 B
C++
Raw Normal View History

2023-10-22 14:35:49 -04:00
#include "HardwareAbstract.hpp"
#include <memory>
/**
* @brief The HardwareFactory is responsible for making the
*/
class HardwareFactory {
public:
static HardwareAbstract &getAbstract();
static std::unique_ptr<HardwareAbstract> mHardware;
};