hyperion.ng/libsrc/hyperion/LedString.cpp

17 lines
233 B
C++
Raw Normal View History

// STL includes
#include <cstring>
#include <iostream>
// hyperion includes
#include <hyperion/LedString.h>
std::vector<Led>& LedString::leds()
{
return mLeds;
}
const std::vector<Led>& LedString::leds() const
{
return mLeds;
}