Add some magic rules to detect which files need to be processed by the moc or uic tools, as well as a way to manually specify exceptions. Signed-off-by: Alberto Mardegan <mardy@users.sourceforge.net> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
9 lines
156 B
C++
9 lines
156 B
C++
#include "maintab.h"
|
|
#include "ui_maintab.h"
|
|
|
|
MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
|
ui(new Ui::MainTab())
|
|
{
|
|
ui->setupUi(this);
|
|
}
|