Lab_interaccio/2015/ventricol_calib/OSCDecoder.h

34 lines
477 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