give sACN univeres an isSynchronized property to track sync state.

This commit is contained in:
Kevin Matz 2021-01-08 14:00:39 -05:00
parent 92ce1d5d65
commit b9977c7f9d
2 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,7 @@ namespace SACN {
Universe::Universe()
: DMX::Universe()
{
synchronized_ = false;
}
void Universe::set(pdu_ptr pdu) {

View File

@ -35,6 +35,10 @@ class Universe
public:
Universe();
void set(pdu_ptr);
bool isSyncronized() const {return synchronized_;};
private:
bool synchronized_;
};