6#include <QtCore/QJsonObject>
7#include <QtCore/QJsonArray>
8#include <QtCore/QJsonValue>
9#include <QtCore/QString>
10#include <QtCore/QList>
20 [[nodiscard]] QList<QString> GetNames()
const;
21 void SetNames(
const QList<QString>& name);
23 [[nodiscard]]
static bool ReadFromJsonObject(CSecurity&
object,
const QJsonObject& jsonObject,
const QJsonObject& globalObject);
25 bool operator==(
const CSecurity& other)
const;
26 bool operator!=(
const CSecurity& other)
const {
return !(operator==(other)); }
29 QList<QString> m_names;
36Q_DECLARE_METATYPE(imtoas::CSecurity);