blob: 020f0fdf534c0580ad754ed5b72e2bb9839a436b (
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
|
/*
* pyOSCDebug.h
* bastardPop
*
* Created by Chris on 25/10/2011.
* Copyright 2011 Goldsmiths Creative Computing. All rights reserved.
*
*/
#include "ofxOSC.h"
#include <vector>
class pyOSCDebug {
public:
pyOSCDebug();
void setup(string host, int port);
void clear();
void send(vector<float> data);
void send(float *data, unsigned int count);
private:
ofxOscSender osc;
bool ready;
};
|