47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*
|
|
* WallaRead - A Wallabag 2+ client for SailfishOS
|
|
* © 2016 Grégory Oestreicher <greg@kamago.net>
|
|
*
|
|
* This file is part of WallaRead.
|
|
*
|
|
* WallaRead 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.
|
|
*
|
|
* WallaRead 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 WallaRead. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifdef QT_QML_DEBUG
|
|
#include <QtQuick>
|
|
#endif
|
|
|
|
#include <QtQml>
|
|
|
|
#include <sailfishapp.h>
|
|
|
|
#include "httprequester.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// SailfishApp::main() will display "qml/template.qml", if you need more
|
|
// control over initialization, you can use:
|
|
//
|
|
// - SailfishApp::application(int, char *[]) to get the QGuiApplication *
|
|
// - SailfishApp::createView() to get a new QQuickView * instance
|
|
// - SailfishApp::pathTo(QString) to get a QUrl to a resource file
|
|
//
|
|
// To display the view, call "show()" (will show fullscreen on device).
|
|
|
|
qmlRegisterType<HttpRequester>( "net.kamago.harbour.wallaread", 1, 0, "HttpRequester" );
|
|
|
|
return SailfishApp::main(argc, argv);
|
|
}
|