QxtGlobalShortcut/example/demo/main.cpp

12 lines
164 B
C++
Raw Normal View History

2015-09-25 20:11:37 +02:00
#include "Widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}