Lab_interaccio/2013/SCK_boya/sck_boya/OSCDecoder.h

35 lines
478 B
C
Raw Permalink Normal View History

2025-02-25 21:29:42 +01:00
/*
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