mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-02-06 02:56:53 +08:00
![jporcher](/assets/img/avatar_default.png)
* Add dockdepth1 example * Fix compilation (include assert.h) * Replace dockdepth1 by dockindock
12 lines
194 B
C++
12 lines
194 B
C++
#include <QApplication>
|
|
#include "../../examples/simple/MainWindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|