TUIO C++ Developer API
|
#include <OscSender.h>
Public Member Functions | |
OscSender () | |
virtual | ~OscSender () |
virtual bool | sendOscPacket (osc::OutboundPacketStream *bundle)=0 |
virtual bool | isConnected ()=0 |
bool | isLocal () |
int | getBufferSize () |
virtual const char * | tuio_type ()=0 |
Protected Attributes | |
unsigned int | buffer_size |
bool | local |
The OscSender class is the base class for the various OSC transport methods such as UDP, TCP ...
|
inline |
The constructor is doing nothing in particular.
|
inlinevirtual |
The destructor is doing nothing in particular.
|
inline |
This method returns the maximum bundle size in bytes
|
pure virtual |
This method returns the connection state
Implemented in TUIO::FlashSender, TUIO::TcpSender, and TUIO::UdpSender.
|
inline |
|
pure virtual |
This method delivers the provided OSC data
*bundle | the OSC stream to deliver |
Implemented in TUIO::FlashSender, TUIO::WebSockSender, TUIO::TcpSender, and TUIO::UdpSender.