/* * Copyright (c) 2013-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include #include #include namespace Swift { class SWIFTEN_API PubSubOwnerDelete : public PubSubOwnerPayload { public: PubSubOwnerDelete(); PubSubOwnerDelete(const std::string& node) : node(node) {} virtual ~PubSubOwnerDelete(); const std::string& getNode() const { return node; } void setNode(const std::string& value) { this->node = value ; } std::shared_ptr getRedirect() const { return redirect; } void setRedirect(std::shared_ptr value) { this->redirect = value ; } private: std::string node; std::shared_ptr redirect; }; }