]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/elevatetool.h
Split the Manipulator class into several Tools
[r2c2.git] / source / designer / elevatetool.h
diff --git a/source/designer/elevatetool.h b/source/designer/elevatetool.h
new file mode 100644 (file)
index 0000000..34c54e7
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef ELEVATETOOL_H_
+#define ELEVATETOOL_H_
+
+#include "manipulator.h"
+
+class ElevateTool: public Manipulator
+{
+private:
+       float origin;
+
+public:
+       ElevateTool(Designer &, Msp::Input::Mouse &, const std::set<R2C2::Object *> &);
+
+       virtual void axis_motion(unsigned, float, float);
+};
+
+#endif