mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 22:42:14 -07:00
14 lines
307 B
C++
14 lines
307 B
C++
#include "tab_home.h"
|
|
|
|
#include <QGroupBox>
|
|
#include <QPushButton>
|
|
|
|
TabHome::TabHome(TabSupervisor *_tabSupervisor, AbstractClient *_client) : Tab(_tabSupervisor), client(_client)
|
|
{
|
|
homeWidget = new HomeWidget(this, tabSupervisor);
|
|
setCentralWidget(homeWidget);
|
|
}
|
|
|
|
void TabHome::retranslateUi()
|
|
{
|
|
}
|