diff options
-rw-r--r-- | Tool.cpp | 9 | ||||
-rw-r--r-- | Tool.h | 11 |
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() +{ +} @@ -0,0 +1,11 @@ +#ifndef TOOL_H_ +#define TOOL_H_ + +class Tool +{ + public: + Tool(); + virtual ~Tool(); +}; + +#endif /*TOOL_H_*/ |