summaryrefslogtreecommitdiffstats
path: root/src/View/View.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-04-15 12:26:05 +0200
committerneoraider <devnull@localhost>2008-04-15 12:26:05 +0200
commit7c929e6e1ce1f43d16d0d279af1e1261b5c566b7 (patch)
tree0ec7d7e4e9af10ff50d1e87f47b02889029f7610 /src/View/View.h
parent85e58bd658d3b572ed598e0460965d7827f4e901 (diff)
downloadzoomedit-7c929e6e1ce1f43d16d0d279af1e1261b5c566b7.tar
zoomedit-7c929e6e1ce1f43d16d0d279af1e1261b5c566b7.zip
zoomedit:
* Moved grid drawing code to TopView
Diffstat (limited to 'src/View/View.h')
-rw-r--r--src/View/View.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/View/View.h b/src/View/View.h
index 32c201e..cdf27aa 100644
--- a/src/View/View.h
+++ b/src/View/View.h
@@ -21,13 +21,18 @@
#define ZOOMEDIT_VIEW_H_
namespace ZoomEdit {
+
+namespace Gui {
+class RenderArea;
+}
+
namespace View {
class View {
public:
virtual ~View() {}
- virtual void render() = 0;
+ virtual void render(Gui::RenderArea *renderArea) = 0;
};
}