mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
CFIController 0
This commit is contained in:
76
LibServer/cficontroller/cfiobject.cpp
Normal file
76
LibServer/cficontroller/cfiobject.cpp
Normal file
@@ -0,0 +1,76 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user