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.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Client/CommandParser.h b/src/Client/CommandParser.h
index 78ed6fa..69ed217 100644
--- a/src/Client/CommandParser.h
+++ b/src/Client/CommandParser.h
@@ -26,10 +26,6 @@
namespace Mad {
-namespace Common {
-class RequestManager;
-}
-
namespace Net {
class Connection;
@@ -56,7 +52,6 @@ class CommandParser {
sigc::signal<void> finished;
- Common::RequestManager *requestManager;
Net::Connection *connection;
unsigned int activeRequests;
@@ -80,7 +75,7 @@ class CommandParser {
}
public:
- CommandParser(Common::RequestManager *requestManager0, Net::Connection *connection0) : requestManager(requestManager0), connection(connection0), activeRequests(0), disconnect(false) {}
+ CommandParser(Net::Connection *connection0) : connection(connection0), activeRequests(0), disconnect(false) {}
bool requestsActive() {return (activeRequests > 0);}
bool willDisconnect() {return disconnect;}