diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -23,10 +23,12 @@ // #include <iostream> #include "QJsonModel.hpp" +#include <QTreeView> +#include <QApplication> int main(int argc, char *argv[]) { - QGuiApplication app(argc, argv); + QApplication app(argc, argv); QQmlEngine engine; QQmlContext *objectContext = new QQmlContext(engine.rootContext()); @@ -86,6 +88,11 @@ int main(int argc, char *argv[]) QQmlComponent component(&engine, "application.qml"); QObject *object = component.create(objectContext); + + + QTreeView * view = new QTreeView; + view->setModel(model); + view->show(); qDebug() << "Competitor:" << jsonObj["units"][0]["competitors"][0]["name"].toString(); |