summaryrefslogtreecommitdiffstats
path: root/src/View/View.h
diff options
context:
space:
mode:
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;
};
}