Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
edhrec_deck_api_response.h
Go to the documentation of this file.
1
6
7#ifndef EDHREC_DECK_API_RESPONSE_H
8#define EDHREC_DECK_API_RESPONSE_H
9
11
13{
14public:
15 // Constructor
17
18 // Parse deck-related data from JSON
19 void fromJson(const QJsonArray &json);
20
21 // Debug method for logging
22 void debugPrint() const;
23
24 DeckLoader *deckLoader;
25};
26
27#endif // EDHREC_DECK_API_RESPONSE_H
EdhrecDeckApiResponse()=default
void debugPrint() const
Definition edhrec_deck_api_response.cpp:23
DeckLoader * deckLoader
Definition edhrec_deck_api_response.h:24
void fromJson(const QJsonArray &json)
Definition edhrec_deck_api_response.cpp:10
TODO: Document this.