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
LocalSink::MsgConfigureChannelizer Class Reference

#include <localsink.h>

+ Inheritance diagram for LocalSink::MsgConfigureChannelizer:
+ Collaboration diagram for LocalSink::MsgConfigureChannelizer:

Public Member Functions

int getLog2Decim () const
 
int getFilterChainHash () 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 MsgConfigureChannelizercreate (unsigned int log2Decim, unsigned int filterChainHash)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgConfigureChannelizer (unsigned int log2Decim, unsigned int filterChainHash)
 

Private Attributes

unsigned int m_log2Decim
 
unsigned int m_filterChainHash
 

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 83 of file localsink.h.

Constructor & Destructor Documentation

◆ MsgConfigureChannelizer()

LocalSink::MsgConfigureChannelizer::MsgConfigureChannelizer ( unsigned int  log2Decim,
unsigned int  filterChainHash 
)
inlineprivate

Definition at line 98 of file localsink.h.

References LocalSink::LocalSink(), and LocalSink::~LocalSink().

98  :
99  Message(),
100  m_log2Decim(log2Decim),
101  m_filterChainHash(filterChainHash)
102  { }
Message()
Definition: message.cpp:26
+ Here is the call graph for this function:

Member Function Documentation

◆ create()

static MsgConfigureChannelizer* LocalSink::MsgConfigureChannelizer::create ( unsigned int  log2Decim,
unsigned int  filterChainHash 
)
inlinestatic

Definition at line 90 of file localsink.h.

Referenced by LocalSinkGUI::applyChannelSettings(), and LocalSink::webapiSettingsPutPatch().

90  {
91  return new MsgConfigureChannelizer(log2Decim, filterChainHash);
92  }
MsgConfigureChannelizer(unsigned int log2Decim, unsigned int filterChainHash)
Definition: localsink.h:98
+ Here is the caller graph for this function:

◆ getFilterChainHash()

int LocalSink::MsgConfigureChannelizer::getFilterChainHash ( ) const
inline

Definition at line 88 of file localsink.h.

Referenced by LocalSink::handleMessage().

88 { return m_filterChainHash; }
+ Here is the caller graph for this function:

◆ getLog2Decim()

int LocalSink::MsgConfigureChannelizer::getLog2Decim ( ) const
inline

Definition at line 87 of file localsink.h.

Referenced by LocalSink::handleMessage().

87 { return m_log2Decim; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_filterChainHash

unsigned int LocalSink::MsgConfigureChannelizer::m_filterChainHash
private

Definition at line 96 of file localsink.h.

◆ m_log2Decim

unsigned int LocalSink::MsgConfigureChannelizer::m_log2Decim
private

Definition at line 95 of file localsink.h.


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