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