blob: e3b0fd8771ca6285674fe8d9d2f146db1ea7269d (
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
26
27
28
29
30
31
|
#ifndef SVGLAYER_H
#define SVGLAYER_H
#include "ofxSVGTiny.h"
class layer
{
public:
layer();
layer(string _f);
virtual ~layer();
virtual void load(string _f);
virtual void draw();
protected:
private:
};
class svglayer: public layer
{
public:
svglayer();
svglayer(string _f);
virtual ~svglayer();
void load(string _f);
void draw();
protected:
private:
ofxSVGTiny svg;
};
#endif // SVGLAYER_H
|