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

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

#include "layers.h"


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

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

#endif // PLAYLIST_H