From 796d647fd38f7cf01cb70bbb0700b75427e42d55 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 28 Oct 2012 17:40:19 +0000 Subject: starting to build kinect addition --- liveengineUnmapped/src/playlist.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 liveengineUnmapped/src/playlist.h (limited to 'liveengineUnmapped/src/playlist.h') 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 layers; + string name; + protected: + private: +}; + +#endif // PLAYLIST_H -- cgit v1.2.3