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
MainCore::MsgSetDevice Class Reference
+ Inheritance diagram for MainCore::MsgSetDevice:
+ Collaboration diagram for MainCore::MsgSetDevice:

Public Member Functions

int getDeviceSetIndex () const
 
int getDeviceIndex () const
 
int getDeviceType () 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 MsgSetDevicecreate (int deviceSetIndex, int deviceIndex, int deviceType)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgSetDevice (int deviceSetIndex, int deviceIndex, int deviceType)
 

Private Attributes

int m_deviceSetIndex
 
int m_deviceIndex
 
int m_deviceType
 

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 194 of file maincore.h.

Constructor & Destructor Documentation

◆ MsgSetDevice()

MainCore::MsgSetDevice::MsgSetDevice ( int  deviceSetIndex,
int  deviceIndex,
int  deviceType 
)
inlineprivate

Definition at line 212 of file maincore.h.

212  :
213  Message(),
214  m_deviceSetIndex(deviceSetIndex),
215  m_deviceIndex(deviceIndex),
216  m_deviceType(deviceType)
217  { }
Message()
Definition: message.cpp:26

Member Function Documentation

◆ create()

static MsgSetDevice* MainCore::MsgSetDevice::create ( int  deviceSetIndex,
int  deviceIndex,
int  deviceType 
)
inlinestatic

Definition at line 202 of file maincore.h.

Referenced by WebAPIAdapterSrv::devicesetDevicePut().

203  {
204  return new MsgSetDevice(deviceSetIndex, deviceIndex, deviceType);
205  }
MsgSetDevice(int deviceSetIndex, int deviceIndex, int deviceType)
Definition: maincore.h:212
+ Here is the caller graph for this function:

◆ getDeviceIndex()

int MainCore::MsgSetDevice::getDeviceIndex ( ) const
inline

Definition at line 199 of file maincore.h.

Referenced by MainCore::handleMessage().

199 { return m_deviceIndex; }
+ Here is the caller graph for this function:

◆ getDeviceSetIndex()

int MainCore::MsgSetDevice::getDeviceSetIndex ( ) const
inline

Definition at line 198 of file maincore.h.

Referenced by MainCore::handleMessage().

198 { return m_deviceSetIndex; }
+ Here is the caller graph for this function:

◆ getDeviceType()

int MainCore::MsgSetDevice::getDeviceType ( ) const
inline

Definition at line 200 of file maincore.h.

Referenced by MainCore::handleMessage().

200 { return m_deviceType; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_deviceIndex

int MainCore::MsgSetDevice::m_deviceIndex
private

Definition at line 209 of file maincore.h.

◆ m_deviceSetIndex

int MainCore::MsgSetDevice::m_deviceSetIndex
private

Definition at line 208 of file maincore.h.

◆ m_deviceType

int MainCore::MsgSetDevice::m_deviceType
private

Definition at line 210 of file maincore.h.


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