/* * Copyright (c) 2013-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include #include namespace Swift { class SWIFTEN_API PubSubOwnerDefault : public PubSubOwnerPayload { public: PubSubOwnerDefault(); virtual ~PubSubOwnerDefault(); std::shared_ptr
getData() const { return data; } void setData(std::shared_ptr value) { this->data = value ; } private: std::shared_ptr data; }; }