summaryrefslogtreecommitdiff
path: root/liveengineUnmapped/src/playlist.h
diff options
context:
space:
mode:
authorTim Redfern <tim@gray.(none)>2012-10-28 17:40:19 +0000
committerTim Redfern <tim@gray.(none)>2012-10-28 17:40:19 +0000
commit796d647fd38f7cf01cb70bbb0700b75427e42d55 (patch)
tree9022fe609a3db0e8f5d92bc179155a6f785707e0 /liveengineUnmapped/src/playlist.h
parent1584507071a2aa4cb27801e980dce0e1843069a4 (diff)
starting to build kinect addition
Diffstat (limited to 'liveengineUnmapped/src/playlist.h')
-rwxr-xr-xliveengineUnmapped/src/playlist.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/liveengineUnmapped/src/playlist.h b/liveengineUnmapped/src/playlist.h
new file mode 100755
index 0000000..846de74
--- /dev/null
+++ b/liveengineUnmapped/src/playlist.h
@@ -0,0 +1,30 @@
+#ifndef PLAYLIST_H
+#define PLAYLIST_H
+
+#include "ofThread.h"
+#include "ofxXmlSettings.h"
+
+#include "layers.h"
+#include "ofMain.h"
+
+class playlist : public ofThread {
+ public:
+ playlist();
+ virtual ~playlist();
+ void loadimg();
+ void loadsvg();
+ void load(string _name);
+ void threadedFunction();
+ void makeThumbnail();
+
+ ofFbo thumbnail;
+ bool thumbnailed;
+
+ ofxXmlSettings XML;
+ map<int,layer*> layers;
+ string name;
+ protected:
+ private:
+};
+
+#endif // PLAYLIST_H