24 lines
377 B
C++
24 lines
377 B
C++
#pragma once
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <string>
|
|
|
|
class CheckableItem
|
|
{
|
|
private:
|
|
bool m_checked = false;
|
|
std::string m_text;
|
|
|
|
public:
|
|
CheckableItem() = default;
|
|
CheckableItem(const std::string &text);
|
|
|
|
std::string getText() const;
|
|
bool isChecked() const;
|
|
void setState(bool checked);
|
|
|
|
void write(QJsonObject &json) const;
|
|
void read(const QJsonObject &json);
|
|
};
|