Refactored command base class for simplicity.

This commit is contained in:
2017-10-13 18:14:24 +02:00
parent 5427876e36
commit 2be3f4256a
3 changed files with 22 additions and 13 deletions

View File

@@ -13,6 +13,8 @@
class CommandTranslate : public Command<OptionGroupBasic, OptionGroupOutput, OptionGroupParser>
{
public:
CommandTranslate();
int run(int argc, char **argv);
};