CFIController 0

This commit is contained in:
2026-01-26 18:47:57 +03:00
parent f7c677f498
commit b452ef347d
12 changed files with 380 additions and 7 deletions

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