mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Remove unused constructors (#60)
This commit is contained in:
parent
ed2612afff
commit
2fff9ae4fc
@ -11,13 +11,6 @@
|
|||||||
// hyperion local includes
|
// hyperion local includes
|
||||||
#include "LedDeviceUdpRaw.h"
|
#include "LedDeviceUdpRaw.h"
|
||||||
|
|
||||||
LedDeviceUdpRaw::LedDeviceUdpRaw(const std::string& outputDevice, const unsigned baudrate) :
|
|
||||||
LedUdpDevice(outputDevice, baudrate, 500000),
|
|
||||||
mLedCount(0)
|
|
||||||
{
|
|
||||||
// empty
|
|
||||||
}
|
|
||||||
|
|
||||||
LedDeviceUdpRaw::LedDeviceUdpRaw(const std::string& outputDevice, const unsigned baudrate, const unsigned latchTime) :
|
LedDeviceUdpRaw::LedDeviceUdpRaw(const std::string& outputDevice, const unsigned baudrate, const unsigned latchTime) :
|
||||||
LedUdpDevice(outputDevice, baudrate, latchTime),
|
LedUdpDevice(outputDevice, baudrate, latchTime),
|
||||||
mLedCount(0)
|
mLedCount(0)
|
||||||
|
@ -18,8 +18,6 @@ public:
|
|||||||
/// @param outputDevice The name of the output device (eg '/etc/SpiDev.0.0')
|
/// @param outputDevice The name of the output device (eg '/etc/SpiDev.0.0')
|
||||||
/// @param baudrate The used baudrate for writing to the output device
|
/// @param baudrate The used baudrate for writing to the output device
|
||||||
///
|
///
|
||||||
LedDeviceUdpRaw(const std::string& outputDevice,
|
|
||||||
const unsigned baudrate);
|
|
||||||
|
|
||||||
LedDeviceUdpRaw(const std::string& outputDevice,
|
LedDeviceUdpRaw(const std::string& outputDevice,
|
||||||
const unsigned baudrate,
|
const unsigned baudrate,
|
||||||
|
@ -11,13 +11,6 @@
|
|||||||
// hyperion local includes
|
// hyperion local includes
|
||||||
#include "LedDeviceWs2801.h"
|
#include "LedDeviceWs2801.h"
|
||||||
|
|
||||||
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate) :
|
|
||||||
LedSpiDevice(outputDevice, baudrate, 500000),
|
|
||||||
mLedCount(0)
|
|
||||||
{
|
|
||||||
// empty
|
|
||||||
}
|
|
||||||
|
|
||||||
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate, const unsigned latchTime) :
|
LedDeviceWs2801::LedDeviceWs2801(const std::string& outputDevice, const unsigned baudrate, const unsigned latchTime) :
|
||||||
LedSpiDevice(outputDevice, baudrate, latchTime),
|
LedSpiDevice(outputDevice, baudrate, latchTime),
|
||||||
mLedCount(0)
|
mLedCount(0)
|
||||||
|
@ -18,8 +18,6 @@ public:
|
|||||||
/// @param outputDevice The name of the output device (eg '/etc/SpiDev.0.0')
|
/// @param outputDevice The name of the output device (eg '/etc/SpiDev.0.0')
|
||||||
/// @param baudrate The used baudrate for writing to the output device
|
/// @param baudrate The used baudrate for writing to the output device
|
||||||
///
|
///
|
||||||
LedDeviceWs2801(const std::string& outputDevice,
|
|
||||||
const unsigned baudrate);
|
|
||||||
|
|
||||||
LedDeviceWs2801(const std::string& outputDevice,
|
LedDeviceWs2801(const std::string& outputDevice,
|
||||||
const unsigned baudrate,
|
const unsigned baudrate,
|
||||||
|
Loading…
Reference in New Issue
Block a user