mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
14 lines
127 B
C++
14 lines
127 B
C++
#include "group.h"
|
|
|
|
Group::Group():
|
|
BasicEntity()
|
|
{
|
|
|
|
}
|
|
|
|
Group::Group(int id, QString name):
|
|
BasicEntity(id, name)
|
|
{
|
|
|
|
}
|