aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-calculator/main.cpp
blob: af252cb333d3f63f50bab2740b05071747ae5830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===========================================
//  Lumina Desktop source code
//  Copyright (c) 2016, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#include <QApplication>
#include <QDebug>

#include "mainUI.h"

int  main(int argc, char *argv[]) {
   QApplication a(argc, argv);

   //Now start the window
   mainUI W;
   W.show();
   return  a.exec();
}
bgstack15