mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-20 23:16:58 +01:00
13 lines
401 B
C++
13 lines
401 B
C++
#include <QtGui/QApplication>
|
|
#include "mainwindow.h"
|
|
//-----------------------------------------------------------------------------
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication::setApplicationName("lcd-image-converter");
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|
|
//-----------------------------------------------------------------------------
|