1 /* 2 Copyright (C) 2008 - 2018 by Jörg Hinrichs <joerg.hinrichs@alice-dsl.de> 3 Copyright (C) 2012 - 2018 by Iris Morelle <shadowm2006@gmail.com> 4 Part of the Battle for Wesnoth Project https://www.wesnoth.org/ 5 6 This program is free software; you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation; either version 2 of the License, or 9 (at your option) any later version. 10 This program is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY. 12 13 See the COPYING file for more details. 14 */ 15 16 #pragma once 17 18 #include "gui/dialogs/modal_dialog.hpp" 19 20 namespace gui2 21 { 22 namespace dialogs 23 { 24 25 class mp_host_game_prompt : public modal_dialog 26 { 27 public: 28 mp_host_game_prompt(); 29 30 /** The execute function. See @ref modal_dialog for more information. */ 31 DEFINE_SIMPLE_EXECUTE_WRAPPER(mp_host_game_prompt) 32 33 private: 34 /** Inherited from modal_dialog, implemented by REGISTER_DIALOG. */ 35 virtual const std::string& window_id() const override; 36 }; 37 } // namespace dialogs 38 } // namespace gui2 39