Files
RRJServer/LibServer/cficontroller/cfiobject.cpp
2026-01-26 18:47:57 +03:00

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;
}