mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
77 lines
992 B
C++
77 lines
992 B
C++
#include "cfiobject.h"
|
|
|
|
CfiObject::CfiObject()
|
|
{
|
|
|
|
}
|
|
|
|
int CfiObject::getId() const
|
|
{
|
|
return id;
|
|
}
|
|
|
|
void CfiObject::setId(int value)
|
|
{
|
|
id = value;
|
|
}
|
|
|
|
QString CfiObject::getCfiName() const
|
|
{
|
|
return cfiName;
|
|
}
|
|
|
|
void CfiObject::setCfiName(const QString &value)
|
|
{
|
|
cfiName = value;
|
|
}
|
|
|
|
QString CfiObject::getCfi() const
|
|
{
|
|
return cfi;
|
|
}
|
|
|
|
void CfiObject::setCfi(const QString &value)
|
|
{
|
|
cfi = value;
|
|
}
|
|
|
|
QString CfiObject::getZoneName() const
|
|
{
|
|
return zoneName;
|
|
}
|
|
|
|
void CfiObject::setZoneName(const QString &value)
|
|
{
|
|
zoneName = value;
|
|
}
|
|
|
|
QString CfiObject::getGoName() const
|
|
{
|
|
return goName;
|
|
}
|
|
|
|
void CfiObject::setGoName(const QString &value)
|
|
{
|
|
goName = value;
|
|
}
|
|
|
|
SetCameraPos CfiObject::getSetCameraPos() const
|
|
{
|
|
return setCameraPos;
|
|
}
|
|
|
|
void CfiObject::setSetCameraPos(const SetCameraPos &value)
|
|
{
|
|
setCameraPos = value;
|
|
}
|
|
|
|
bool CfiObject::getIsChanged() const
|
|
{
|
|
return isChanged;
|
|
}
|
|
|
|
void CfiObject::setIsChanged(bool value)
|
|
{
|
|
isChanged = value;
|
|
}
|