summaryrefslogtreecommitdiff
path: root/03_play/src/testApp.h
diff options
context:
space:
mode:
Diffstat (limited to '03_play/src/testApp.h')
-rw-r--r--03_play/src/testApp.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/03_play/src/testApp.h b/03_play/src/testApp.h
index a276a59..c162d2b 100644
--- a/03_play/src/testApp.h
+++ b/03_play/src/testApp.h
@@ -7,6 +7,11 @@
#define MAX_DEVICES 2
+struct record{
+ vector<string> data;
+ string audio;
+};
+
class testApp : public ofBaseApp{
public:
@@ -32,13 +37,13 @@ public:
ofTrueTypeFont verdana;
- vector<vector<string> > recs;
-
ofxXmlSettings XML;
- vector<pair<string,string> > filenames;
+ vector<record> recs;
ofSoundPlayer soundplayer;
+
+ float offset;
};