PSQL 30.10.2024

This commit is contained in:
krivoshein
2024-10-30 15:33:26 +03:00
commit 024cd38bd6
256 changed files with 31332 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
#ifndef DIALOGEDITINSTRUCTOR_H
#define DIALOGEDITINSTRUCTOR_H
#include <QDialog>
#include "instructor.h"
#include "ui_dialogeditinstructor.h"
namespace Ui {
class DialogEditInstructor;
}
class DialogEditInstructor : public QDialog
{
Q_OBJECT
public:
explicit DialogEditInstructor(QWidget *parent = nullptr);
~DialogEditInstructor();
void setInstructor(Instructor instructor);
Instructor getInstructor();
private:
Ui::DialogEditInstructor *ui;
};
#endif // DIALOGEDITINSTRUCTOR_H