metaforce/hecl/driver/CToolPackage.hpp

33 lines
435 B
C++
Raw Normal View History

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