/* * Copyright (c) 2012 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include namespace Swift { class InviteToChatWindow { public: virtual ~InviteToChatWindow() {}; virtual void setAutoCompletions(std::vector > completions) = 0; virtual std::string getReason() const = 0; virtual std::vector getJIDs() const = 0; boost::signal onCompleted; boost::signal onDismissed; }; }