diff options
Diffstat (limited to 'src/CommandParser.cc')
-rw-r--r-- | src/CommandParser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandParser.cc b/src/CommandParser.cc index 1f8218e..95630d0 100644 --- a/src/CommandParser.cc +++ b/src/CommandParser.cc | |||
@@ -45,7 +45,7 @@ CommandFactory::~CommandFactory() { | |||
45 | 45 | ||
46 | } | 46 | } |
47 | 47 | ||
48 | void CommandFactory::addCommand(const string &command_name) { | 48 | void CommandFactory::addCommand(const std::string &command_name) { |
49 | CommandParser::instance().associateCommand(command_name, *this); | 49 | CommandParser::instance().associateCommand(command_name, *this); |
50 | } | 50 | } |
51 | 51 | ||
@@ -62,7 +62,7 @@ CommandParser &CommandParser::instance() { | |||
62 | return *s_singleton; | 62 | return *s_singleton; |
63 | } | 63 | } |
64 | 64 | ||
65 | FbTk::Command *CommandParser::parseLine(const string &line) { | 65 | FbTk::Command *CommandParser::parseLine(const std::string &line) { |
66 | 66 | ||
67 | // parse arguments and command | 67 | // parse arguments and command |
68 | string command = line; | 68 | string command = line; |