mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 14:50:05 +00:00
16 lines
400 B
C++
16 lines
400 B
C++
#include "main_window.hpp"
|
|
|
|
#include <boost/log/expressions.hpp>
|
|
#include <boost/log/trivial.hpp>
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
boost::log::core::get()->set_filter(boost::log::trivial::severity >=
|
|
boost::log::trivial::debug);
|
|
|
|
QApplication a(argc, argv);
|
|
scwx::qt::MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|