29 lines
414 B
C++
29 lines
414 B
C++
#ifndef WINDOWRENNLISTE2_H
|
|
#define WINDOWRENNLISTE2_H
|
|
|
|
#include <QMainWindow>
|
|
#include "database.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
class WindowRennliste2;
|
|
}
|
|
|
|
class WindowRennliste2 : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WindowRennliste2(DataBase *db, QWidget *parent = 0);
|
|
~WindowRennliste2();
|
|
|
|
private:
|
|
DataBase *db;
|
|
Ui::WindowRennliste2 *ui;
|
|
};
|
|
|
|
#endif // WINDOWRENNLISTE2_H
|