diff options
Diffstat (limited to 'Libraries/OSC/OSCEncoder.h')
| -rw-r--r-- | Libraries/OSC/OSCEncoder.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Libraries/OSC/OSCEncoder.h b/Libraries/OSC/OSCEncoder.h new file mode 100644 index 0000000..5361c86 --- /dev/null +++ b/Libraries/OSC/OSCEncoder.h @@ -0,0 +1,34 @@ +/* + + ArdOSC - OSC Library for Arduino. + + -------- Lisence ----------------------------------------------------------- + + ArdOSC + + The MIT License + + Copyright (c) 2009 - 2010 recotana( http://recotana.com ) All right reserved + + */ + + +#ifndef OSCEncoder_h +#define OSCEncoder_h + + + +#include "OSCMessage.h" + +class OSCEncoder{ + +private: + + +public: + + int16_t encode( OSCMessage::OSCMessage *mes ,uint8_t *sendData ); + +}; + +#endif
\ No newline at end of file |
