gazetk / GazeTkHub / Hub / src / mainwindow.cpp @ fba08427
History | View | Annotate | Download (318 Bytes)
| 1 |
#include "mainwindow.h" |
|---|---|
| 2 |
#include "ui_mainwindow.h" |
| 3 |
#include "pluginloader.h" |
| 4 |
|
| 5 |
#include <QtDebug> |
| 6 |
|
| 7 |
MainWindow::MainWindow(QWidget *parent) : |
| 8 |
QMainWindow(parent), |
| 9 |
ui(new Ui::MainWindow)
|
| 10 |
{
|
| 11 |
ui->setupUi(this);
|
| 12 |
gazetk::PluginLoader::instance()->loadPlugins(); |
| 13 |
} |
| 14 |
|
| 15 |
MainWindow::~MainWindow() |
| 16 |
{
|
| 17 |
delete ui;
|
| 18 |
} |