/* * Copyright (c) 2013 Remko Tronçon * Licensed under the GNU General Public License. * See the COPYING file for more information. */ #pragma once #include #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 ; } boost::shared_ptr getRedirect() const { return redirect; } void setRedirect(boost::shared_ptr value) { this->redirect = value ; } private: std::string node; boost::shared_ptr redirect; }; }