You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
505 B
C++
16 lines
505 B
C++
#include "MainWindowGenerator.h"
|
|
#include "GUIFrame/MainWindow.h"
|
|
#include "CFDStruct/CFDStructMain/CFDStructMainWindow.h"
|
|
#include "CFDApplication/CFDApplicationMain/CFDApplicationMainWindow.h"
|
|
|
|
MainWindowGenerator::MainWindowGenerator() {
|
|
// this->setStyle("://Structural.qss");
|
|
// this->showMaximize(false);
|
|
}
|
|
|
|
QWidget* MainWindowGenerator::genMainWindow() {
|
|
// return new GUI::MainWindow;
|
|
return new GUI::CFDStructMainWindow;
|
|
// return new GUI::CFDApplicationMainWindow;
|
|
}
|