mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
28 lines
663 B
C++
28 lines
663 B
C++
#ifndef TRAINEESVIEW_H
|
|
#define TRAINEESVIEW_H
|
|
|
|
#include "instructorsAndTrainees_global.h"
|
|
#include "databasetrainees.h"
|
|
#include "commonview.h"
|
|
|
|
//Родительский класс представления БД Обучаемых (для просмотра и управления)
|
|
|
|
class INSTRUCTORSANDTRAINEES_EXPORT TraineesView: public CommonView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TraineesView(DataBaseTrainees* db, TypeView type, QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void preparationTreeWidget(QTreeWidget* tree);
|
|
void loadTraineesFromDB();
|
|
|
|
void reSetHeadTreeWidget();
|
|
|
|
protected:
|
|
DataBaseTrainees* dbTrainees;
|
|
};
|
|
|
|
#endif // TRAINEESVIEW_H
|