Freeciv21
Develop your civilization from humble roots to a global empire
page_main.h
Go to the documentation of this file.
1 /**************************************************************************
2  Copyright (c) 1996-2020 Freeciv21 and Freeciv contributors. This file is
3  part of Freeciv21. Freeciv21 is free software: you can redistribute it
4  and/or modify it under the terms of the GNU General Public License as
5  published by the Free Software Foundation, either version 3 of the
6  License, or (at your option) any later version. You should have received
7  a copy of the GNU General Public License along with Freeciv21. If not,
8  see https://www.gnu.org/licenses/.
9 **************************************************************************/
10 #pragma once
11 
12 #include <QWidget>
13 
14 class fc_client;
15 #include "ui_page_main.h"
16 
17 class page_main : public QWidget {
18  Q_OBJECT
19 public:
20  page_main(QWidget *, fc_client *);
21  ~page_main() override;
22 
23 private:
24  Ui::Form ui;
25 };
Ui::Form ui
Definition: page_main.h:24
page_main(QWidget *, fc_client *)
Definition: page_main.cpp:19
~page_main() override