| 4 | #include <QApplication> |
| 5 | |
| 6 | int main(int argc, char *argv[]) |
| 7 | { |
| 8 | AllocConsole(); |
| 9 | freopen("CONOUT$", "w", stdout); |
| 10 | QApplication a(argc, argv); |
| 11 | MainWindow w; |
| 12 | w.show(); |
| 13 | return a.exec(); |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected