summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2007-11-30 16:07:00 +0100
committerneoraider <devnull@localhost>2007-11-30 16:07:00 +0100
commitecf40f86dfa6aa623bf31494125f3702f9fa0298 (patch)
treebff9dfde579a816c6690be49d24e9f2d0e28b895
parentdd27a62566f9f0c42d9eebe6ad8023b69a741ca6 (diff)
downloadzoomedit-ecf40f86dfa6aa623bf31494125f3702f9fa0298.tar
zoomedit-ecf40f86dfa6aa623bf31494125f3702f9fa0298.zip
zoomedit: Forgot some files.
-rw-r--r--Tool.cpp9
-rw-r--r--Tool.h11
2 files changed, 20 insertions, 0 deletions
diff --git a/Tool.cpp b/Tool.cpp
new file mode 100644
index 0000000..52e711c
--- /dev/null
+++ b/Tool.cpp
@@ -0,0 +1,9 @@
+#include "Tool.h"
+
+Tool::Tool()
+{
+}
+
+Tool::~Tool()
+{
+}
diff --git a/Tool.h b/Tool.h
new file mode 100644
index 0000000..b95590a
--- /dev/null
+++ b/Tool.h
@@ -0,0 +1,11 @@
+#ifndef TOOL_H_
+#define TOOL_H_
+
+class Tool
+{
+ public:
+ Tool();
+ virtual ~Tool();
+};
+
+#endif /*TOOL_H_*/