summaryrefslogtreecommitdiff
path: root/src/gui/graphicals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/graphicals.h')
-rw-r--r--src/gui/graphicals.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/gui/graphicals.h b/src/gui/graphicals.h
new file mode 100644
index 0000000..c944e7e
--- /dev/null
+++ b/src/gui/graphicals.h
@@ -0,0 +1,35 @@
+/*
+ * graphicals.h
+ *
+ * Created on: Apr 2, 2011
+ * Author: jakob
+ */
+
+#ifndef GRAPHICALS_H_
+#define GRAPHICALS_H_
+#include "Element.h"
+
+namespace vhc {
+
+class Renderable {
+
+public:
+
+ Renderable() {};
+
+ virtual ~Renderable() {};
+
+ virtual void render() const = 0;
+
+};
+
+template <class T>;
+class Graphical: public Renderable {
+private:
+ T* element
+};
+
+
+}
+
+#endif /* GRAPHICALS_H_ */