mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 06:54:39 -04:00
SDRdaemon plugin: button to make auto follow stream sample rate optional
This commit is contained in:
@@ -93,6 +93,26 @@ public:
|
||||
{ }
|
||||
};
|
||||
|
||||
class MsgConfigureSDRdaemonAutoFollowRate : public Message {
|
||||
MESSAGE_CLASS_DECLARATION
|
||||
|
||||
public:
|
||||
bool autoFollowRate() const { return m_autoFollowRate; }
|
||||
|
||||
static MsgConfigureSDRdaemonAutoFollowRate* create(bool autoFollowRate)
|
||||
{
|
||||
return new MsgConfigureSDRdaemonAutoFollowRate(autoFollowRate);
|
||||
}
|
||||
|
||||
private:
|
||||
bool m_autoFollowRate;
|
||||
|
||||
MsgConfigureSDRdaemonAutoFollowRate(bool autoFollowRate) :
|
||||
Message(),
|
||||
m_autoFollowRate(autoFollowRate)
|
||||
{ }
|
||||
};
|
||||
|
||||
class MsgConfigureSDRdaemonStreamTiming : public Message {
|
||||
MESSAGE_CLASS_DECLARATION
|
||||
|
||||
|
||||
Reference in New Issue
Block a user