#include <OSCMessage.h>
Definition at line 30 of file OSCMessage.h.
Public Member Functions | |
| OSCMessage () | |
| ~OSCMessage () | |
| void | setTarget (const int &target) |
| int | getTarget () const |
| void | setTargetData (const int &targetData) |
| int | getTargetData () const |
| void | setMethod (QString method) |
| QString | getMethod () const |
| void | clearArgs () |
| void | addArg (QVariant arg) |
| size_t | getArgCount () const |
| const QVariant & | getArg (size_t i) const |
Private Attributes | |
| int | m_target |
| int | m_targetData |
| QString | m_method |
| std::vector< QVariant > | m_args |
| OSCMessage::OSCMessage | ( | ) | [inline] |
Definition at line 33 of file OSCMessage.h.
| OSCMessage::~OSCMessage | ( | ) |
| void OSCMessage::setTarget | ( | const int & | target | ) | [inline] |
Definition at line 36 of file OSCMessage.h.
References m_target.
Referenced by OSCQueue::oscMessageHandler().
| int OSCMessage::getTarget | ( | ) | const [inline] |
Definition at line 37 of file OSCMessage.h.
References m_target.
Referenced by MainWindowBase::pollOSC(), and OSCQueue::postMessage().
| void OSCMessage::setTargetData | ( | const int & | targetData | ) | [inline] |
Definition at line 39 of file OSCMessage.h.
References m_targetData.
Referenced by OSCQueue::oscMessageHandler().
| int OSCMessage::getTargetData | ( | ) | const [inline] |
Definition at line 40 of file OSCMessage.h.
References m_targetData.
Referenced by OSCQueue::postMessage().
| void OSCMessage::setMethod | ( | QString | method | ) | [inline] |
Definition at line 42 of file OSCMessage.h.
References m_method.
Referenced by OSCQueue::oscMessageHandler().
| QString OSCMessage::getMethod | ( | ) | const [inline] |
Definition at line 43 of file OSCMessage.h.
References m_method.
Referenced by MainWindow::handleOSCMessage(), and OSCQueue::postMessage().
| void OSCMessage::clearArgs | ( | ) |
| void OSCMessage::addArg | ( | QVariant | arg | ) |
Definition at line 36 of file OSCMessage.cpp.
References m_args.
Referenced by OSCQueue::oscMessageHandler().
| size_t OSCMessage::getArgCount | ( | ) | const |
Definition at line 42 of file OSCMessage.cpp.
References m_args.
Referenced by MainWindow::handleOSCMessage().
| const QVariant & OSCMessage::getArg | ( | size_t | i | ) | const |
Definition at line 48 of file OSCMessage.cpp.
References m_args.
Referenced by MainWindow::handleOSCMessage().
int OSCMessage::m_target [private] |
int OSCMessage::m_targetData [private] |
QString OSCMessage::m_method [private] |
std::vector<QVariant> OSCMessage::m_args [private] |
Definition at line 55 of file OSCMessage.h.
Referenced by addArg(), clearArgs(), getArg(), and getArgCount().
1.5.1