summaryrefslogtreecommitdiff
path: root/Libraries/OSC/OSCEncoder.h
blob: 5361c86535c63e67b9351e5fd9e7227c3b66fda5 (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
32
33
34
/*
 
 ArdOSC - OSC Library for Arduino.
 
 -------- Lisence -----------------------------------------------------------
 
 ArdOSC
 
 The MIT License
 
 Copyright (c) 2009 - 2010 recotana( http://recotana.com ) All right reserved
 
 */	


#ifndef OSCEncoder_h
#define OSCEncoder_h



#include "OSCMessage.h"

class OSCEncoder{
	
private:
	
	
public:
	
	int16_t encode( OSCMessage::OSCMessage *mes ,uint8_t *sendData );
	
};

#endif