Skip to content
Snippets Groups Projects
Commit 84a0bf20 authored by Martin Kaltenbrunner's avatar Martin Kaltenbrunner
Browse files

add profile query

parent d112b1a2
Branches
No related tags found
No related merge requests found
......@@ -176,7 +176,6 @@ namespace TUIO {
*/
void setSourceName(const char *name);
/**
* Defines the name and IP address of this TUIO source, which is transmitted within the /tuio/[profile] source message.
*
......@@ -185,14 +184,16 @@ namespace TUIO {
*/
void setSourceName(const char *name, const char *ip);
void addOscSender(OscSender *sender);
void enableObjectProfile(bool flag) { objectProfileEnabled = flag; };
void enableCursorProfile(bool flag) { cursorProfileEnabled = flag; };
void enableBlobProfile(bool flag) { blobProfileEnabled = flag; };
bool hasObjectProfile() { return objectProfileEnabled; };
bool hasCursorProfile() { return cursorProfileEnabled; };
bool hasBlobProfile() { return blobProfileEnabled; };
private:
void initialize(OscSender *oscsend);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment