diff options
Diffstat (limited to 'Swiften/Queries/Responders')
-rw-r--r-- | Swiften/Queries/Responders/SoftwareVersionResponder.cpp | 19 | ||||
-rw-r--r-- | Swiften/Queries/Responders/SoftwareVersionResponder.h | 28 |
2 files changed, 24 insertions, 23 deletions
diff --git a/Swiften/Queries/Responders/SoftwareVersionResponder.cpp b/Swiften/Queries/Responders/SoftwareVersionResponder.cpp index 6c10a2b..5071f6e 100644 --- a/Swiften/Queries/Responders/SoftwareVersionResponder.cpp +++ b/Swiften/Queries/Responders/SoftwareVersionResponder.cpp @@ -1,12 +1,13 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ -#include <boost/smart_ptr/make_shared.hpp> - #include <Swiften/Queries/Responders/SoftwareVersionResponder.h> + +#include <memory> + #include <Swiften/Queries/IQRouter.h> namespace Swift { @@ -15,14 +16,14 @@ SoftwareVersionResponder::SoftwareVersionResponder(IQRouter* router) : GetRespon } void SoftwareVersionResponder::setVersion(const std::string& client, const std::string& version, const std::string& os) { - this->client = client; - this->version = version; - this->os = os; + this->client = client; + this->version = version; + this->os = os; } -bool SoftwareVersionResponder::handleGetRequest(const JID& from, const JID&, const std::string& id, boost::shared_ptr<SoftwareVersion>) { - sendResponse(from, id, boost::make_shared<SoftwareVersion>(client, version, os)); - return true; +bool SoftwareVersionResponder::handleGetRequest(const JID& from, const JID&, const std::string& id, std::shared_ptr<SoftwareVersion>) { + sendResponse(from, id, std::make_shared<SoftwareVersion>(client, version, os)); + return true; } } diff --git a/Swiften/Queries/Responders/SoftwareVersionResponder.h b/Swiften/Queries/Responders/SoftwareVersionResponder.h index 4418333..4bb3425 100644 --- a/Swiften/Queries/Responders/SoftwareVersionResponder.h +++ b/Swiften/Queries/Responders/SoftwareVersionResponder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -7,24 +7,24 @@ #pragma once #include <Swiften/Base/API.h> -#include <Swiften/Queries/GetResponder.h> #include <Swiften/Elements/SoftwareVersion.h> +#include <Swiften/Queries/GetResponder.h> namespace Swift { - class IQRouter; + class IQRouter; - class SWIFTEN_API SoftwareVersionResponder : public GetResponder<SoftwareVersion> { - public: - SoftwareVersionResponder(IQRouter* router); + class SWIFTEN_API SoftwareVersionResponder : public GetResponder<SoftwareVersion> { + public: + SoftwareVersionResponder(IQRouter* router); - void setVersion(const std::string& client, const std::string& version, const std::string& os = ""); + void setVersion(const std::string& client, const std::string& version, const std::string& os = ""); - private: - virtual bool handleGetRequest(const JID& from, const JID& to, const std::string& id, boost::shared_ptr<SoftwareVersion> payload); + private: + virtual bool handleGetRequest(const JID& from, const JID& to, const std::string& id, std::shared_ptr<SoftwareVersion> payload); - private: - std::string client; - std::string version; - std::string os; - }; + private: + std::string client; + std::string version; + std::string os; + }; } |