File: contactlistqml.cpp

package info (click to toggle)
kpeople 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 856 kB
  • sloc: cpp: 3,723; sh: 16; xml: 10; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
    Persons Model Example
    SPDX-FileCopyrightText: 2012 Aleix Pol Gonzalez <aleixpol@blue-systems.com>

    SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include <QGuiApplication>
#include <QQmlApplicationEngine>

int main(int argc, char **argv)
{
    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine(QUrl(QStringLiteral("qrc:/qml/Main.qml")));

    app.exec();
}