]> git.tdb.fi Git - r2c2.git/blob - source/designer/movetool.h
Split the Manipulator class into several Tools
[r2c2.git] / source / designer / movetool.h
1 #ifndef MOVETOOL_H_
2 #define MOVETOOL_H_
3
4 #include "manipulator.h"
5
6 class MoveTool: public Manipulator
7 {
8 private:
9         R2C2::Vector origin;
10
11 public:
12         MoveTool(Designer &, Msp::Input::Mouse &, const std::set<R2C2::Object *> &);
13
14         virtual void axis_motion(unsigned, float, float);
15 };
16
17 #endif