hyperion.ng/include/leddevice/LedDeviceFactory.h

24 lines
548 B
C++

#pragma once
// Leddevice includes
#include <leddevice/LedDevice.h>
///
/// The LedDeviceFactory is responsible for constructing 'LedDevices'
///
class LedDeviceFactory
{
public:
///
/// Constructs a LedDevice based on the given configuration
///
/// @param deviceConfig The configuration of the led-device
///
/// @return The constructed LedDevice or nullptr if configuration is invalid. The ownership of
/// the constructed LedDevice is tranferred to the caller
///
static LedDevice * construct(const QJsonObject & deviceConfig);
};