zoomedit: Forgot some files.

This commit is contained in:
neoraider 2007-11-30 15:07:00 +00:00
parent dd27a62566
commit ecf40f86df
2 changed files with 20 additions and 0 deletions

9
Tool.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "Tool.h"
Tool::Tool()
{
}
Tool::~Tool()
{
}

11
Tool.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef TOOL_H_
#define TOOL_H_
class Tool
{
public:
Tool();
virtual ~Tool();
};
#endif /*TOOL_H_*/