mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
These are all design documents that I thought I had lost. It's may make me cringe, but it's still cool to use it to see how far I've come.
31 lines
553 B
C++
31 lines
553 B
C++
/**
|
|
* @file main.cpp
|
|
* @brief Main file.
|
|
* @author Micha? Policht
|
|
*/
|
|
|
|
#include <QApplication>
|
|
#include "MainWindow.h"
|
|
#include "MessageWindow.h"
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
//! [0]
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
|
//redirect debug messages to the MessageWindow dialog
|
|
qInstallMsgHandler(MessageWindow::AppendMsgWrapper);
|
|
#else
|
|
qInstallMessageHandler(MessageWindow::AppendMsgWrapper);
|
|
#endif
|
|
//! [0]
|
|
|
|
MainWindow mainWindow;
|
|
mainWindow.show();
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
|