SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
RemoteOutput::MsgConfigureRemoteOutput Class Reference

#include <remoteoutput.h>

+ Inheritance diagram for RemoteOutput::MsgConfigureRemoteOutput:
+ Collaboration diagram for RemoteOutput::MsgConfigureRemoteOutput:

Public Member Functions

const RemoteOutputSettingsgetSettings () const
 
bool getForce () const
 
- Public Member Functions inherited from Message
 Message ()
 
virtual ~Message ()
 
virtual const char * getIdentifier () const
 
virtual bool matchIdentifier (const char *identifier) const
 
void * getDestination () const
 
void setDestination (void *destination)
 

Static Public Member Functions

static MsgConfigureRemoteOutputcreate (const RemoteOutputSettings &settings, bool force=false)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgConfigureRemoteOutput (const RemoteOutputSettings &settings, bool force)
 

Private Attributes

RemoteOutputSettings m_settings
 
bool m_force
 

Additional Inherited Members

- Protected Attributes inherited from Message
void * m_destination
 
- Static Protected Attributes inherited from Message
static const char * m_identifier = 0
 

Detailed Description

Definition at line 43 of file remoteoutput.h.

Constructor & Destructor Documentation

◆ MsgConfigureRemoteOutput()

RemoteOutput::MsgConfigureRemoteOutput::MsgConfigureRemoteOutput ( const RemoteOutputSettings settings,
bool  force 
)
inlineprivate

Definition at line 59 of file remoteoutput.h.

Referenced by create().

59  :
60  Message(),
61  m_settings(settings),
62  m_force(force)
63  { }
Message()
Definition: message.cpp:26
+ Here is the caller graph for this function:

Member Function Documentation

◆ create()

static MsgConfigureRemoteOutput* RemoteOutput::MsgConfigureRemoteOutput::create ( const RemoteOutputSettings settings,
bool  force = false 
)
inlinestatic

Definition at line 50 of file remoteoutput.h.

References MsgConfigureRemoteOutput().

Referenced by RemoteOutput::deserialize(), RemoteOutputSinkGui::updateHardware(), and RemoteOutput::webapiSettingsPutPatch().

51  {
52  return new MsgConfigureRemoteOutput(settings, force);
53  }
MsgConfigureRemoteOutput(const RemoteOutputSettings &settings, bool force)
Definition: remoteoutput.h:59
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getForce()

bool RemoteOutput::MsgConfigureRemoteOutput::getForce ( ) const
inline

Definition at line 48 of file remoteoutput.h.

References m_force.

Referenced by RemoteOutput::handleMessage().

+ Here is the caller graph for this function:

◆ getSettings()

const RemoteOutputSettings& RemoteOutput::MsgConfigureRemoteOutput::getSettings ( ) const
inline

Definition at line 47 of file remoteoutput.h.

References m_settings.

Referenced by RemoteOutputSinkGui::handleMessage(), and RemoteOutput::handleMessage().

47 { return m_settings; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_force

bool RemoteOutput::MsgConfigureRemoteOutput::m_force
private

Definition at line 57 of file remoteoutput.h.

Referenced by getForce().

◆ m_settings

RemoteOutputSettings RemoteOutput::MsgConfigureRemoteOutput::m_settings
private

Definition at line 56 of file remoteoutput.h.

Referenced by getSettings().


The documentation for this class was generated from the following file: