initial commit
This commit is contained in:
33
windowrennliste.h
Normal file
33
windowrennliste.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef WINDOWRENNLISTE_H
|
||||
#define WINDOWRENNLISTE_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include "database.h"
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
using std::vector;
|
||||
|
||||
namespace Ui {
|
||||
class WindowRennliste;
|
||||
}
|
||||
|
||||
class WindowRennliste : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit WindowRennliste(DataBase *db, QWidget *parent = 0);
|
||||
~WindowRennliste();
|
||||
|
||||
|
||||
private:
|
||||
unsigned int selectedRow;
|
||||
vector< vector<QString> > tableData;
|
||||
DataBase *db;
|
||||
Ui::WindowRennliste *ui;
|
||||
public slots:
|
||||
void changeSelection();
|
||||
};
|
||||
|
||||
#endif // WINDOWRENNLISTE_H
|
||||
Reference in New Issue
Block a user