summaryrefslogtreecommitdiffstats
path: root/src/View/View.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-04-20 02:08:05 +0200
committerneoraider <devnull@localhost>2008-04-20 02:08:05 +0200
commit12ebbe18e1c54c854286e38a4cf9e15433cd1bb2 (patch)
tree67fd0c9b9f80c8f096133f7ceb06cb77b0cc9ce1 /src/View/View.h
parentc771232b7433c076290c2ac6c8c53090a1ad3592 (diff)
downloadzoomedit-12ebbe18e1c54c854286e38a4cf9e15433cd1bb2.tar
zoomedit-12ebbe18e1c54c854286e38a4cf9e15433cd1bb2.zip
zoomedit:
* Moved much stuff from RenderArea to TopView to make MapView possible * Created MapView class
Diffstat (limited to 'src/View/View.h')
-rw-r--r--src/View/View.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/View/View.h b/src/View/View.h
index ad0a6cd..6a0eaf8 100644
--- a/src/View/View.h
+++ b/src/View/View.h
@@ -33,6 +33,9 @@ class View {
virtual ~View() {}
virtual void render(Gui::RenderArea *renderArea) = 0;
+
+ virtual void zoom(Gui::RenderArea*, int, float, float) {}
+ virtual void move(Gui::RenderArea*, float, float) {}
};
}