QtAwesome/QtAwesomeSample/main.cpp

25 lines
426 B
C++
Raw Permalink Normal View History

2013-04-19 14:26:54 +08:00
/**
2015-01-27 17:14:37 +08:00
* MIT Licensed
*
* Copyright 2011-2015 - Reliable Bits Software by Blommers IT. All Rights Reserved.
2013-04-19 14:26:54 +08:00
* Author Rick Blommers
*/
#include "QtAwesome.h"
#include <QApplication>
#include <QMainWindow>
#include <QPushButton>
#include <QVBoxLayout>
#include <QWidget>
#include "mainwindow.h"
2013-04-19 14:26:54 +08:00
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MainWindow w;
2013-04-19 14:26:54 +08:00
w.show();
2013-04-19 14:26:54 +08:00
return app.exec();
}