diff options
| author | Tim <tim@Admins-Mac-Pro-2.local> | 2013-06-14 18:19:11 +0100 |
|---|---|---|
| committer | Tim <tim@Admins-Mac-Pro-2.local> | 2013-06-14 18:19:11 +0100 |
| commit | 577e61af4e08eb4b9f68f27343802f65a8fcddb0 (patch) | |
| tree | d04896c98db7595e56e7ff2944193ca30a6b145c /03_play/src/testApp.h | |
| parent | c00137b70ac965a928b56a7a31e655de29608284 (diff) | |
making audio sync
Diffstat (limited to '03_play/src/testApp.h')
| -rw-r--r-- | 03_play/src/testApp.h | 11 |
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; }; |
