summaryrefslogtreecommitdiff
path: root/Libraries/OSC/OSCDecoder.h
blob: 0c47a9b2044be65d596b538a182197eb450617e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 
 ArdOSC - OSC Library for Arduino.
 
 -------- Lisence -----------------------------------------------------------
 
 ArdOSC
 
 The MIT License
 
 Copyright (c) 2009 - 2010 recotana( http://recotana.com ) All right reserved
 
 */	

#ifndef OSCDecoder_h
#define OSCDecoder_h

#include "OSCMessage.h"

class OSCDecoder{
	
private:
	
	
public:
	
	int16_t decode( OSCMessage::OSCMessage *mes ,const uint8_t *recData );
		
};

#endif