~george-edison55/twistload/trunk

« back to all changes in this revision

Viewing changes to mainwindow.h

  • 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
 
#ifndef MAINWINDOW_H
2
 
#define MAINWINDOW_H
3
 
 
4
 
#include <QMainWindow>
5
 
 
6
 
namespace Ui {
7
 
class MainWindow;
8
 
}
9
 
 
10
 
class MainWindow : public QMainWindow
11
 
{
12
 
    Q_OBJECT
13
 
 
14
 
public:
15
 
    explicit MainWindow(QWidget *parent = 0);
16
 
    ~MainWindow();
17
 
 
18
 
private:
19
 
    Ui::MainWindow *ui;
20
 
};
21
 
 
22
 
#endif // MAINWINDOW_H