2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 03:47:42 +00:00

driver frontend in place

This commit is contained in:
Jack Andersen
2015-05-19 19:22:32 -10:00
parent 66d07af26e
commit 93a602be9a
17 changed files with 419 additions and 93 deletions

View File

@@ -0,0 +1,30 @@
#ifndef CTOOL_REMOVE
#define CTOOL_REMOVE
#include "CToolBase.hpp"
class CToolRemove final : public CToolBase
{
public:
CToolRemove(const SToolPassInfo& info)
: CToolBase(info)
{
}
~CToolRemove()
{
}
static void Help()
{
}
std::string toolName() const {return "remove";}
int run()
{
return 0;
}
};
#endif // CTOOL_REMOVE