Artifact 078fa5200d9942a257e28b23cdc72fe04f47b1a5:

  • File src/main-sfos.cxx — part of check-in [7384b27e37] at 2018-02-03 18:48:54 on branch trunk — Add `CutImage` component (user: fifr size: 1216)

/*
 * Copyright (c) 2018 Frank Fischer <frank-fischer@shadow-soft.de>
 *
 * This program is free software: you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see  <http://www.gnu.org/licenses/>
 */

#include <QtGui/QGuiApplication>

#include <QtQuick/QQuickView>

#include <sailfishapp.h>

#include "init.hxx"

// #include <opencv2/highgui/highgui.hpp>

int main(int argc, char* argv[])
{
    QScopedPointer<QGuiApplication> app(SailfishApp::application(argc, argv));

    QScopedPointer<QQuickView> view(SailfishApp::createView());

    init_app(*app, *view->engine());

    view->setSource(QUrl(QStringLiteral("qrc:///qml/fotokopierer.qml")));
    view->show();

    return app->exec();
}