summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/ProtocolHeader.h')
m---------Swiften0
-rw-r--r--Swiften/Elements/ProtocolHeader.h36
2 files changed, 0 insertions, 36 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Elements/ProtocolHeader.h b/Swiften/Elements/ProtocolHeader.h
deleted file mode 100644
index da64811..0000000
--- a/Swiften/Elements/ProtocolHeader.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#pragma once
-
-#include "Swiften/Base/String.h"
-
-namespace Swift {
- class ProtocolHeader {
- public:
- ProtocolHeader() : version("1.0") {}
-
- const String& getTo() const { return to; }
- void setTo(const String& a) {
- to = a;
- }
-
- const String& getFrom() const { return from; }
- void setFrom(const String& a) {
- from = a;
- }
-
- const String& getVersion() const { return version; }
- void setVersion(const String& a) {
- version = a;
- }
-
- const String& getID() const { return id; }
- void setID(const String& a) {
- id = a;
- }
-
- private:
- String to;
- String from;
- String id;
- String version;
- };
-}