filewatcher/code/src/mainwindow.cpp
Brian 3877187da0 QT Project configured and compiling.
Still doesn't do much, that will come in the following months.
2013-12-22 21:22:21 -07:00

14 lines
219 B
C++

#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}