Modularize and Doxygen decklist.cpp

Took 1 hour 40 minutes

Took 11 seconds
This commit is contained in:
Lukas Brübach 2025-09-05 02:03:40 +02:00
parent da52d677c7
commit ae78aa1468
35 changed files with 1400 additions and 699 deletions

View file

@ -0,0 +1,8 @@
#include "deck_list_card_node.h"
DecklistCardNode::DecklistCardNode(DecklistCardNode *other, InnerDecklistNode *_parent)
: AbstractDecklistCardNode(_parent), name(other->getName()), number(other->getNumber()),
cardSetShortName(other->getCardSetShortName()), cardSetNumber(other->getCardCollectorNumber()),
cardProviderId(other->getCardProviderId())
{
}