summaryrefslogtreecommitdiff
path: root/liveengine/src/layers.h
diff options
context:
space:
mode:
Diffstat (limited to 'liveengine/src/layers.h')
-rw-r--r--liveengine/src/layers.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/liveengine/src/layers.h b/liveengine/src/layers.h
new file mode 100644
index 0000000..e3b0fd8
--- /dev/null
+++ b/liveengine/src/layers.h
@@ -0,0 +1,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