diff options
Diffstat (limited to 'Swiften/Elements/JingleS5BTransport.h')
-rw-r--r-- | Swiften/Elements/JingleS5BTransport.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Swiften/Elements/JingleS5BTransport.h b/Swiften/Elements/JingleS5BTransport.h deleted file mode 100644 index 4522417..0000000 --- a/Swiften/Elements/JingleS5BTransport.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2011 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include <Swiften/Elements/JingleTransport.h> -#include <Swiften/Elements/Bytestreams.h> - -namespace Swift { - class JingleS5BTransport : public JingleTransport { - public: - const Bytestreams& getInfo() const { - return info; - } - - void setInfo(const Bytestreams& info) { - this->info = info; - } - - private: - Bytestreams info; - }; -} |