30 lines
732 B
C++
30 lines
732 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#include <SkinnyShortcut.h>
|
|
|
|
#include <QskQml.h>
|
|
#include <QskObjectCounter.h>
|
|
|
|
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
#ifdef ITEM_STATISTICS
|
|
QskObjectCounter counter( true );
|
|
#endif
|
|
|
|
QskQml::registerTypes();
|
|
|
|
QGuiApplication app( argc, argv );
|
|
|
|
SkinnyShortcut::enable( SkinnyShortcut::AllShortcuts );
|
|
|
|
QQmlApplicationEngine engine( QUrl( "qrc:/qml/messagebox.qml" ) );
|
|
|
|
return app.exec();
|
|
}
|