1
0
Fork 0

remove commented code

This commit is contained in:
Kevin Matz 2022-12-09 23:09:26 -05:00
parent 16416ff10f
commit 8221c90e24
1 changed files with 0 additions and 4 deletions

View File

@ -68,9 +68,6 @@ public:
Receiver(UUID::uuid = UUID::uuid(), std::string fctn = "OpenLCP sACN Receiver");
~Receiver();
// void setHoldLastLook(const bool);
// bool isEnabledHoldLastLook() const;
virtual void subscribe(const uint16_t);
virtual void unsubscribe(const uint16_t);
std::shared_ptr<Universe> universe(const uint16_t) const;
@ -102,7 +99,6 @@ private:
std::unordered_map<uint16_t, std::shared_ptr<ArbitratingUniverse>> universes_;
std::vector<std::function<void()>> discoveryCallbacks_;
bool discovery_enabled_;
// bool HoldLastLook;
};
};