Files
pokerth/src/gui/qml/qmlwrapper.cpp
T

20 lines
235 B
C++
Raw Normal View History

2015-01-04 21:21:48 +01:00
#include <QtCore>
#include "qmlwrapper.h"
#include "views/startview/startview.h"
qmlWrapper::qmlWrapper()
{
qDebug("qmlWrapperKonstruktor");
startView myStartView;
myStartView.show();
}
qmlWrapper::~qmlWrapper()
{
}