37 lines
472 B
C++
37 lines
472 B
C++
/*
|
||
|
||
ArdOSC 2.1 - OSC Library for Arduino.
|
||
|
||
-------- Lisence -----------------------------------------------------------
|
||
|
||
ArdOSC
|
||
|
||
The MIT License
|
||
|
||
Copyright (c) 2009 - 2011 recotana( http://recotana.com ) All right reserved
|
||
|
||
*/
|
||
|
||
|
||
#ifndef OSCEncoder_h
|
||
#define OSCEncoder_h
|
||
|
||
|
||
|
||
#include "OSCMessage.h"
|
||
|
||
class OSCEncoder{
|
||
|
||
private:
|
||
|
||
int16_t encode( OSCMessage::OSCMessage *mes ,uint8_t *_binData );
|
||
|
||
|
||
public:
|
||
|
||
|
||
friend class OSCClient;
|
||
};
|
||
|
||
#endif
|