summaryrefslogtreecommitdiffstats
path: root/src/Common/Request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Request.h')
-rw-r--r--src/Common/Request.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Common/Request.h b/src/Common/Request.h
index 17e5eab..3d4be63 100644
--- a/src/Common/Request.h
+++ b/src/Common/Request.h
@@ -27,17 +27,7 @@ namespace Mad {
namespace Common {
class Request : public RequestHandler {
- private:
- bool sent;
-
- protected:
- Request() : sent(false) {}
-
- void setSent() {sent = true;}
-
public:
- bool isSent() const {return sent;}
-
virtual bool sendRequest(Net::Connection *connection, uint16_t requestId) = 0;
};