summaryrefslogtreecommitdiff
path: root/liveengine/src/playlist.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2012-08-31 16:48:23 +0100
committerTim Redfern <tim@eclectronics.org>2012-08-31 16:48:23 +0100
commit34a459de430dd35034ec9404fe7ec54407641085 (patch)
treefcb318cebe27673ae63799f1b2bc33b328d98965 /liveengine/src/playlist.h
parentba7cc94d4ae55e171f0e08126abb0cb13d8f9f8f (diff)
threaded loader
Diffstat (limited to 'liveengine/src/playlist.h')
-rw-r--r--liveengine/src/playlist.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/liveengine/src/playlist.h b/liveengine/src/playlist.h
new file mode 100644
index 0000000..afedec9
--- /dev/null
+++ b/liveengine/src/playlist.h
@@ -0,0 +1,23 @@
+#ifndef PLAYLIST_H
+#define PLAYLIST_H
+
+#include "ofThread.h"
+#include "ofxXmlSettings.h"
+
+#include "layers.h"
+
+
+class playlist : public ofThread {
+ public:
+ playlist();
+ virtual ~playlist();
+ void load(string _name);
+ void threadedFunction();
+
+ ofxXmlSettings XML;
+ map<int,layer*> layers;
+ protected:
+ private:
+};
+
+#endif // PLAYLIST_H