Maraiah/source/tycho-qt/main.cc

19 lines
255 B
C++
Raw Normal View History

2019-05-15 21:28:33 -07:00
#include "winmenu.h"
2019-05-15 12:54:35 -07:00
#include <QApplication>
#include <cstdio>
extern "C" void test_fn();
int main(int argc, char *argv[])
{
puts("hello, world");
test_fn();
QApplication a(argc, argv);
2019-05-15 21:28:33 -07:00
WinMenu w;
2019-05-15 12:54:35 -07:00
w.show();
return a.exec();
}
// EOF