added first part of evaluation realised in Cpp
This commit is contained in:
35
mainwindow.h
35
mainwindow.h
@@ -4,41 +4,40 @@
|
||||
#include <QMainWindow>
|
||||
|
||||
//#include "mainwindow2.h"
|
||||
#include "evaluation.h"
|
||||
#include "hardwaresetup.h"
|
||||
#include "training.h"
|
||||
#include "windowrace.h"
|
||||
#include "windowssettings.h"
|
||||
#include "windowrennliste.h"
|
||||
#include "windowrennliste2.h"
|
||||
#include "training.h"
|
||||
#include "windowssettings.h"
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
class MainWindow : public QMainWindow {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
public:
|
||||
explicit MainWindow(QWidget * parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
|
||||
|
||||
public slots:
|
||||
public slots:
|
||||
void NewWindowSettings();
|
||||
void WindowRennen();
|
||||
void WindowTraining();
|
||||
void WindowEvaluation();
|
||||
|
||||
|
||||
private:
|
||||
Training *interfaceTraining;
|
||||
void closeEvent(QCloseEvent *event);
|
||||
DataBase *db;
|
||||
Ui::MainWindow *ui;
|
||||
WindowRace *interfaceRace;
|
||||
WindowsSettings *interfaceSettings;
|
||||
WindowRennliste *interfaceRennliste;
|
||||
private:
|
||||
Training * interfaceTraining;
|
||||
void closeEvent(QCloseEvent * event);
|
||||
DataBase * db;
|
||||
Ui::MainWindow * ui;
|
||||
WindowRace * interfaceRace;
|
||||
WindowsSettings * interfaceSettings;
|
||||
WindowRennliste * interfaceRennliste;
|
||||
Evaluation * interfaceEvaluation;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
||||
|
||||
Reference in New Issue
Block a user