diff options
Diffstat (limited to 'le_new/src/playlist.h')
| -rwxr-xr-x | le_new/src/playlist.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/le_new/src/playlist.h b/le_new/src/playlist.h new file mode 100755 index 0000000..2790835 --- /dev/null +++ b/le_new/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<int,layer*> layers;
+ string name;
+ protected:
+ private:
+};
+
+#endif // PLAYLIST_H
|
