diff options
Diffstat (limited to 'Swiften/Elements/Bytestreams.h')
-rw-r--r-- | Swiften/Elements/Bytestreams.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Swiften/Elements/Bytestreams.h b/Swiften/Elements/Bytestreams.h index 323167c..9d45c8a 100644 --- a/Swiften/Elements/Bytestreams.h +++ b/Swiften/Elements/Bytestreams.h @@ -8,15 +8,17 @@ #include <vector> #include <boost/optional.hpp> +#include <boost/shared_ptr.hpp> #include "Swiften/JID/JID.h" #include "Swiften/Base/String.h" -#include "Swiften/Base/Shared.h" #include "Swiften/Elements/Payload.h" namespace Swift { - class Bytestreams : public Payload, public Shared<Bytestreams> { + class Bytestreams : public Payload { public: + typedef boost::shared_ptr<Bytestreams> ref; + struct StreamHost { StreamHost(const String& host = "", const JID& jid = JID(), int port = -1) : host(host), jid(jid), port(port) {} |