/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class MessageEvent : public StanzaEvent { public: typedef std::shared_ptr ref; MessageEvent(std::shared_ptr stanza) : stanza_(stanza), targetsMe_(true) {} std::shared_ptr getStanza() {return stanza_;} bool isReadable() { return getStanza()->isError() || !getStanza()->getBody().get_value_or("").empty(); } void read() { assert (isReadable()); conclude(); } void setTargetsMe(bool targetsMe) { targetsMe_ = targetsMe; } bool targetsMe() const { return targetsMe_; } private: std::shared_ptr stanza_; bool targetsMe_; }; }