mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-16 05:35:43 +08:00
11 lines
172 B
C++
11 lines
172 B
C++
|
#include <mainwindow.h>
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication a(argc, argv);
|
||
|
CMainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|