Lab_interaccio/2014/VDOSSIER_DIL/OSCDecoder.h
2025-02-25 21:29:42 +01:00

35 lines
479 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
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