30 lines
490 B
C++
30 lines
490 B
C++
|
#include "mainwindow.h"
|
||
|
#include "form1.h"
|
||
|
#include "form2.h"
|
||
|
#include "form3.h"
|
||
|
#include <form4.h>
|
||
|
#include <form5.h>
|
||
|
#include <form6.h>
|
||
|
#include <form7.h>
|
||
|
#include <smallwidget.h>
|
||
|
#include <form8.h>
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
// MainWindow w;
|
||
|
// Form1 w;
|
||
|
// Form2 w;
|
||
|
// Form3 w;
|
||
|
// Form4 w;
|
||
|
// Form5 w;
|
||
|
// Form6 w;
|
||
|
// SmallWidget w;
|
||
|
// Form7 w;
|
||
|
Form7 w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|