mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-09 17:44:01 -07:00
remove QObject
This commit is contained in:
parent
b1fc73381c
commit
7eddd049f1
1 changed files with 2 additions and 4 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue