- Migrated the _version command from handleCompletionVersion to
  CmdVersion.
This commit is contained in:
Paul Beckingham 2011-05-24 20:57:24 -04:00
parent fc77e04b54
commit 54d98a6b2d
8 changed files with 40 additions and 29 deletions

View file

@ -37,5 +37,12 @@ public:
int execute (const std::string&, std::string&);
};
class CmdCompletionVersion : public Command
{
public:
CmdCompletionVersion ();
int execute (const std::string&, std::string&);
};
#endif
////////////////////////////////////////////////////////////////////////////////