File: main.cpp

package info (click to toggle)
libqofono 0.124-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,556 kB
  • sloc: cpp: 13,292; xml: 978; sh: 33; makefile: 21
file content (13 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QWindow>

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

    QQmlApplicationEngine engine;
    engine.load(QUrl(QLatin1String("/usr/share/libqofono-qt5/qml/ofonotest/main.qml")));

    return app.exec();
}