summaryrefslogtreecommitdiff
path: root/liveengine/src/playlist.h
diff options
context:
space:
mode:
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