~george-edison55/twistload/trunk

« back to all changes in this revision

Viewing changes to src/mainwindow.cpp

  • Committer: Nathan Osman
  • Date: 2014-05-18 22:39:42 UTC
  • Revision ID: git-v1:599a80382f9fa4338d2c6eec7027af5fc594c3c8
Moved source files and UI files to separate directories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "mainwindow.h"
 
2
#include "ui_mainwindow.h"
 
3
 
 
4
MainWindow::MainWindow(QWidget *parent) :
 
5
    QMainWindow(parent),
 
6
    ui(new Ui::MainWindow)
 
7
{
 
8
    ui->setupUi(this);
 
9
}
 
10
 
 
11
MainWindow::~MainWindow()
 
12
{
 
13
    delete ui;
 
14
}