1
0
Fork 0

add missing property getter for "Hold Last Look"

This commit is contained in:
Kevin Matz 2022-11-19 15:45:31 -05:00
parent 488328a05e
commit e4119c5189
2 changed files with 11 additions and 0 deletions

View File

@ -67,6 +67,16 @@ void Receiver::setHoldLastLook(const bool state)
}
/**
* @brief Receiver::isEnabledHoldLastLook
* @return
*/
bool Receiver::isEnabledHoldLastLook() const
{
return HoldLastLook;
}
/**
* @brief Receiver::subscribe
* @param num

View File

@ -69,6 +69,7 @@ public:
~Receiver();
void setHoldLastLook(const bool);
bool isEnabledHoldLastLook() const;
virtual void subscribe(const uint16_t);
virtual void unsubscribe(const uint16_t);