14 lines
205 B
C++
14 lines
205 B
C++
|
#include "frmmain.h"
|
|||
|
#include "qapplication.h"
|
|||
|
|
|||
|
int main(int argc, char *argv[])
|
|||
|
{
|
|||
|
QApplication a(argc, argv);
|
|||
|
|
|||
|
frmMain w;
|
|||
|
w.setWindowTitle("qwtdemo");
|
|||
|
w.show();
|
|||
|
|
|||
|
return a.exec();
|
|||
|
}
|