mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
138b7d9c94
Co-authored-by: Seker <murat.seker@barco.com>
27 lines
310 B
C++
27 lines
310 B
C++
// STL includes
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
// hyperion includes
|
|
#include <hyperion/LedString.h>
|
|
|
|
LedString::LedString()
|
|
{
|
|
// empty
|
|
}
|
|
|
|
LedString::~LedString()
|
|
{
|
|
// empty
|
|
}
|
|
|
|
std::vector<Led>& LedString::leds()
|
|
{
|
|
return mLeds;
|
|
}
|
|
|
|
const std::vector<Led>& LedString::leds() const
|
|
{
|
|
return mLeds;
|
|
}
|