mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2024-11-15 21:45:43 +08:00
25 lines
426 B
C++
25 lines
426 B
C++
/**
|
|
* MIT Licensed
|
|
*
|
|
* Copyright 2011-2022 - Reliable Bits Software by Blommers IT. All Rights Reserved.
|
|
* Author Rick Blommers
|
|
*/
|
|
|
|
#include "QtAwesome.h"
|
|
|
|
#include <QApplication>
|
|
#include <QMainWindow>
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
return app.exec();
|
|
}
|