#include <WOscReceiverMethod.h>
Inherits WOscMethod.
Public Member Functions | |
| WOscReceiverMethod (WOscContainer *parent, WOscReceiver *context, const char *methodName, const char *methodDescription) | |
| WOscReceiverMethod (WOscContainer *parent, WOscReceiver *context, const char *methodName, WOscMethodInfo *info) | |
Protected Member Functions | |
| virtual | ~WOscReceiverMethod () |
| WOscReceiver * | GetContext () |
WOscClient.cpp, and WOscServer.cpp.
Definition at line 53 of file WOscReceiverMethod.h.
|
||||||||||||||||||||
|
Constructor of an OSC receiver method.
Definition at line 68 of file WOscReceiverMethod.h. 00069 : 00070 WOscMethod(parent, methodName, new WOscMethodInfo(methodDescription)), 00071 m_context(context) 00072 { } /** As the other constructor but the user can set a proprietary method
|
|
||||||||||||||||||||
|
As the other constructor but the user can set a proprietary method info.
Definition at line 79 of file WOscReceiverMethod.h. 00080 : 00081 WOscMethod(parent, methodName, info), m_context(context) 00082 { }
|
|
|
Destructor. Definition at line 86 of file WOscReceiverMethod.h. 00086 { }
|
|
|
Returns a pointer to the OSC receiver owning this method. Casts the internal context-pointer to OSC receiver.
Definition at line 92 of file WOscReceiverMethod.h. 00092 { return m_context; }
|
1.4.1