mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
17 lines
281 B
C++
17 lines
281 B
C++
#include "computer.h"
|
|
|
|
Computer::Computer():
|
|
BasicEntity(),
|
|
classroom(),
|
|
ipAddress()
|
|
{
|
|
|
|
}
|
|
|
|
Computer::Computer(int id, QString name, QString ipAddress, Classroom classroom):
|
|
BasicEntity(id, name)
|
|
{
|
|
this->ipAddress = ipAddress;
|
|
this->classroom = classroom;
|
|
}
|