PSQL 01.11.2024

This commit is contained in:
krivoshein
2024-11-01 11:45:13 +03:00
parent 024cd38bd6
commit 9422c5e257
274 changed files with 3223 additions and 3102 deletions

View File

@@ -0,0 +1,27 @@
#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