gazetk / GazeTkHub / Hub / src / mainwindow.cpp @ 2eb54f9d
History | View | Annotate | Download (318 Bytes)
1 | 2eb54f9d | Thies Pfeiffer | #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 | } |