subsurface/qt-ui/maintab.cpp
Alberto Mardegan 99153de715 Makefile: detect which files need moc and uic
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>
2013-04-09 19:54:41 -07:00

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);
}