Jamoma API  0.6.0.a19
OSCInclude.h
Go to the documentation of this file.
1 /** @file
2  *
3  * @ingroup modularOSC
4  *
5  * @brief
6  *
7  * @details
8  *
9  * @authors Théo de la Hogue
10  *
11  * @copyright © 2013, Théo de la Hogue @n
12  * This code is licensed under the terms of the "New BSD License" @n
13  * http://creativecommons.org/licenses/BSD/
14  */
15 
16 #ifndef _OSCINCLUDE_H_
17 #define _OSCINCLUDE_H_
18 
19 #ifdef TT_PLATFORM_WIN
20  #include <time.h>
21  #include <windows.h>
22 #else
23  #include <sys/time.h>
24 #endif
25 
26 #include "TTFoundationAPI.h"
27 
28 #include <sstream>
29 #include <iostream>
30 #include <string>
31 #include <map>
32 #include <vector>
33 
34 using namespace std;
35 
36 static const unsigned int OSC_RECEPTION_PORT = 9002;
37 
38 #define DEFAULT_TIMEOUT 1000
39 #define NO_TIMEOUT -1
40 
41 #endif /*_OSCINCLUDE_H_*/
STL namespace.