#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