From 8c86c8e56d5948f44ba7524284824bbc6eff952b Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 12 Apr 2015 22:20:30 +0100 Subject: initial commit --- liveengine/src/playlist.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 liveengine/src/playlist.h (limited to 'liveengine/src/playlist.h') diff --git a/liveengine/src/playlist.h b/liveengine/src/playlist.h new file mode 100755 index 0000000..2790835 --- /dev/null +++ b/liveengine/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 loadLayers(); + 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