/* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include #include namespace Swift { class RequestViewHistoryUIEvent : public UIEvent { public: typedef boost::shared_ptr ref; RequestViewHistoryUIEvent(const JID& jid = "") : jid(jid) { } const JID& getJID() const { return jid; } private: JID jid; }; }