mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
31 lines
570 B
C++
31 lines
570 B
C++
#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;}
|
|
|
|
private:
|
|
Group group;
|
|
Computer computer;
|
|
TimingOfTrainee timing;
|
|
};
|
|
|
|
#endif // TRAINEE_H
|