summaryrefslogtreecommitdiff
path: root/liveengine/src/playlist.h
blob: 43982f9480eb83721069dca5db2957119d3c7e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef PLAYLIST_H
#define PLAYLIST_H

#include "ofThread.h"
#include "ofxXmlSettings.h"

#include "layers.h"


class playlist : public ofThread {
    public:
        playlist();
        virtual ~playlist();
        void loadimg();
        void loadsvg();
        void load(string _name);
        void threadedFunction();

        ofxXmlSettings XML;
        map<int,layer*> layers;
    protected:
    private:
};

#endif // PLAYLIST_H