/* client/menuwindow.h This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #ifndef __INCLUDED_CLIENT_MENUWINDOW_H__ #define __INCLUDED_CLIENT_MENUWINDOW_H__ #include "ui/window.h" namespace client { /** * @brief generic base class for client windows * This class implements the default layout for most client * windows **/ class MenuWindow : public ui::Window { public: MenuWindow(ui::Widget *parent = 0); virtual ~MenuWindow(); protected: virtual void resize(); }; } #endif // __INCLUDED_CLIENT_MENUWINDOW_H__