Revert "Command: Removed obsolete method"

This reverts commit 796ec14c31.
This commit is contained in:
Paul Beckingham 2016-01-10 00:07:07 -05:00
parent f6ecc08b51
commit fb13483cec
2 changed files with 6 additions and 0 deletions

View file

@ -231,6 +231,11 @@ Command::Command ()
{ {
} }
////////////////////////////////////////////////////////////////////////////////
Command::~Command ()
{
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
std::string Command::keyword () const std::string Command::keyword () const
{ {

View file

@ -53,6 +53,7 @@ public:
}; };
Command (); Command ();
virtual ~Command ();
static void factory (std::map <std::string, Command*>&); static void factory (std::map <std::string, Command*>&);