QTfrontend/pageingame.cpp
changeset 5204 e1a5f4d5d86a
parent 5078 3527f0e7bb21
child 6042 8b5345758f62
equal deleted inserted replaced
5203:b77f28facca6 5204:e1a5f4d5d86a
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    17  */
    17  */
    18 
    18 
    19 #include <QLabel>
    19 #include <QLabel>
    20 
    20 
    21 #include "pages.h"
    21 #include "pageingame.h"
    22 
    22 
    23 PageInGame::PageInGame(QWidget* parent) :
    23 PageInGame::PageInGame(QWidget* parent) :
    24   AbstractPage(parent)
    24   AbstractPage(parent)
    25 {
    25 {
    26     QLabel * label = new QLabel(this);
    26     QLabel * label = new QLabel(this);
    27     label->setText("In game...");
    27     label->setText("In game...");
    28 }
    28 }
       
    29