summaryrefslogtreecommitdiffstats
path: root/src/Client/CommandParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Client/CommandParser.h')
-rw-r--r--src/Client/CommandParser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Client/CommandParser.h b/src/Client/CommandParser.h
index 2827443..23330ca 100644
--- a/src/Client/CommandParser.h
+++ b/src/Client/CommandParser.h
@@ -29,7 +29,7 @@
namespace Mad {
-namespace Net {
+namespace Common {
class Connection;
}
@@ -50,7 +50,7 @@ class CommandParser {
static CommandParser commandParser;
- Net::Connection *connection;
+ Common::Connection *connection;
const Command* findCommand(const std::string& command);
void printUsage(const std::string& command);
@@ -73,11 +73,11 @@ class CommandParser {
return &commandParser;
}
- Net::Connection *getConnection() const {
+ Common::Connection *getConnection() const {
return connection;
}
- void setConnection(Net::Connection *con) {
+ void setConnection(Common::Connection *con) {
connection = con;
}