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,24 @@
#include "abstract_deck_list_node.h"
#include "inner_deck_list_node.h"
AbstractDecklistNode::AbstractDecklistNode(InnerDecklistNode *_parent, int position)
: parent(_parent), sortMethod(Default)
{
if (parent) {
if (position == -1) {
parent->append(this);
} else {
parent->insert(position, this);
}
}
}
int AbstractDecklistNode::depth() const
{
if (parent) {
return parent->depth() + 1;
} else {
return 0;
}
}