mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
refact1
This commit is contained in:
31
LibDataBaseInterface/trainee.h
Normal file
31
LibDataBaseInterface/trainee.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef TRAINEE_H
|
||||
#define TRAINEE_H
|
||||
|
||||
#include <QList>
|
||||
|
||||
#include "user.h"
|
||||
#include "group.h"
|
||||
#include "computer.h"
|
||||
#include "timingoftrainee.h"
|
||||
|
||||
class DATABASELMS_EXPORT Trainee: public User
|
||||
{
|
||||
public:
|
||||
Trainee();
|
||||
|
||||
void setGroup(Group group){this->group = group;}
|
||||
Group getGroup(){return group;}
|
||||
|
||||
void setComputer(Computer computer){this->computer = computer;}
|
||||
Computer getComputer(){return computer;}
|
||||
|
||||
TimingOfTrainee getTiming(){return timing;}
|
||||
void setTiming(TimingOfTrainee timing);
|
||||
|
||||
private:
|
||||
Group group;
|
||||
Computer computer;
|
||||
TimingOfTrainee timing;
|
||||
};
|
||||
|
||||
#endif // TRAINEE_H
|
||||
Reference in New Issue
Block a user