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_*/