Server. Фильтрация subProc на совпадения

This commit is contained in:
2025-11-19 17:33:50 +03:00
parent 74594de4ad
commit 176ced7045
9 changed files with 37 additions and 9 deletions

View File

@@ -21,6 +21,12 @@ public:
modeListStr = buildCanplay(modeList);
};
~SubProc(){};
public:
bool operator==(const SubProc& other) const
{
// Сравнение членов класса
return (this->dmCode == other.dmCode && this->title == other.title && this->modeListStr == other.modeListStr);
}
public:
void setModeList(const ModeList &modeList);