34 lines
477 B
C++
34 lines
477 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 OSCDecoder_h
|
||
#define OSCDecoder_h
|
||
|
||
|
||
#include "OSCMessage.h"
|
||
|
||
class OSCDecoder{
|
||
|
||
private:
|
||
|
||
|
||
int16_t decode( OSCMessage::OSCMessage *_mes ,const uint8_t *_binData );
|
||
|
||
public:
|
||
|
||
|
||
friend class OSCServer;
|
||
};
|
||
|
||
#endif |