metaforce/hecl/driver/CToolClean.hpp

31 lines
385 B
C++
Raw Normal View History

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