diff options
Diffstat (limited to 'sunkenEngine/src/playlist.h')
| -rwxr-xr-x | sunkenEngine/src/playlist.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sunkenEngine/src/playlist.h b/sunkenEngine/src/playlist.h new file mode 100755 index 0000000..e672260 --- /dev/null +++ b/sunkenEngine/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
|
