summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/CompressRequest.h')
m---------Swiften0
-rw-r--r--Swiften/Elements/CompressRequest.h25
2 files changed, 0 insertions, 25 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Elements/CompressRequest.h b/Swiften/Elements/CompressRequest.h
deleted file mode 100644
index 53c0805..0000000
--- a/Swiften/Elements/CompressRequest.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef SWIFTEN_CompressRequest_H
-#define SWIFTEN_CompressRequest_H
-
-#include "Swiften/Elements/Element.h"
-
-namespace Swift {
- class CompressRequest : public Element
- {
- public:
- CompressRequest(const String& method = "") : method_(method) {}
-
- const String& getMethod() const {
- return method_;
- }
-
- void setMethod(const String& method) {
- method_ = method;
- }
-
- private:
- String method_;
- };
-}
-
-#endif