/* * Copyright (c) 2013-2016 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 PubSubItem : public Payload { public: PubSubItem(); virtual ~PubSubItem(); const std::vector< std::shared_ptr >& getData() const { return data; } void setData(const std::vector< std::shared_ptr >& value) { this->data = value ; } void addData(std::shared_ptr value) { this->data.push_back(value); } const std::string& getID() const { return id; } void setID(const std::string& value) { this->id = value ; } private: std::vector< std::shared_ptr > data; std::string id; }; }