remove QObject

This commit is contained in:
RickyRister 2025-11-30 01:38:27 -08:00
parent b1fc73381c
commit 7eddd049f1

View file

@ -123,10 +123,8 @@ public:
* deck.saveToFile_Native(device); * deck.saveToFile_Native(device);
* ``` * ```
*/ */
class DeckList : public QObject class DeckList
{ {
Q_OBJECT
public: public:
struct Metadata struct Metadata
{ {
@ -232,7 +230,7 @@ public:
DeckList &operator=(const DeckList &) = delete; DeckList &operator=(const DeckList &) = delete;
/// @brief Construct from a serialized native-format string. /// @brief Construct from a serialized native-format string.
explicit DeckList(const QString &nativeString); explicit DeckList(const QString &nativeString);
~DeckList() override; virtual ~DeckList();
/// @name Metadata getters /// @name Metadata getters
/// The individual metadata getters still exist for backwards compatibility. /// The individual metadata getters still exist for backwards compatibility.