-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
35 lines (31 loc) · 817 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/************************************************************************
* THIS CODE IS RELEASED UNDER THE
* GNU GENERAL PUBLIC LICENSE
* Version 2, June 1991
*
* See LICENSE for more information
*
************************************************************************/
/****************************************************************
**
** mtrainer
** cw training software
**
** Based on and includes some of Ray Goff, G4FON's "Koch" for windows
**
**
**
**
****************************************************************/
#include <qapplication.h>
#include "layout.h"
int main( int argc, char **argv )
{
QApplication a( argc, argv );
//MyWidget w(NULL, "CW Trainer");
MyWidget w(NULL) ;
// a.setMainWidget( &w );
w.setMinimumSize(640, 480);
w.show();
return a.exec();
}