metaforce/hecl/driver/CToolAdd.hpp

31 lines
371 B
C++
Raw Normal View History

2015-05-19 21:01:32 +00:00
#ifndef CTOOL_ADD
#define CTOOL_ADD
#include "CToolBase.hpp"
2015-05-20 05:22:32 +00:00
class CToolAdd final : public CToolBase
{
public:
2015-05-20 05:22:32 +00:00
CToolAdd(const SToolPassInfo& info)
: CToolBase(info)
{
}
2015-05-20 05:22:32 +00:00
~CToolAdd()
{
}
2015-05-20 05:22:32 +00:00
static void Help()
{
}
std::string toolName() const {return "add";}
int run()
{
return 0;
}
};
2015-05-19 21:01:32 +00:00
#endif // CTOOL_ADD