QT Project configured and compiling.

Still doesn't do much, that will come in the following months.
This commit is contained in:
Brian 2013-12-22 21:22:21 -07:00
parent 6ee0553af8
commit 3877187da0
43 changed files with 235 additions and 78 deletions

22
code/src/mainwindow.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H