35b94f8b43
Modernizes the code. Task-number: QTBUG-108857 Pick-to: 6.5 6.4 6.2 5.15 Change-Id: I6ddf1de3699506ffc0fc4b1034ab48defafcf174 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
46 lines
871 B
C++
46 lines
871 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef CHARACTER_H
|
|
#define CHARACTER_H
|
|
|
|
#include <QJsonObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
//! [0]
|
|
class Character
|
|
{
|
|
Q_GADGET
|
|
|
|
public:
|
|
enum ClassType {
|
|
Warrior, Mage, Archer
|
|
};
|
|
Q_ENUM(ClassType)
|
|
|
|
Character();
|
|
Character(const QString &name, int level, ClassType classType);
|
|
|
|
QString name() const;
|
|
void setName(const QString &name);
|
|
|
|
int level() const;
|
|
void setLevel(int level);
|
|
|
|
ClassType classType() const;
|
|
void setClassType(ClassType classType);
|
|
|
|
void read(const QJsonObject &json);
|
|
void write(QJsonObject &json) const;
|
|
|
|
void print(int indentation = 0) const;
|
|
private:
|
|
QString mName;
|
|
int mLevel = 0;
|
|
ClassType mClassType = Warrior;
|
|
};
|
|
//! [0]
|
|
|
|
#endif // CHARACTER_H
|