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