MCPcopy Create free account
hub / github.com/aldelaro5/dolphin-memory-engine / StructTreeNode

Method StructTreeNode

Source/Structs/StructTreeNode.cpp:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <QJsonArray>
4
5StructTreeNode::StructTreeNode(StructDef* const structDef, StructTreeNode* const parent,
6 bool isGroup, QString name)
7{
8 m_isGroup = isGroup;
9 m_nodeName = std::move(name);
10 m_structDef = structDef;
11 m_parent = parent;
12 updateName();
13}
14
15StructTreeNode::StructTreeNode(StructTreeNode* node)
16 : m_isGroup(node->isGroup()), m_nodeName(QString(node->getName())),

Callers

nothing calls this directly

Calls 3

getStructDefMethod · 0.80
isGroupMethod · 0.45
getParentMethod · 0.45

Tested by

no test coverage detected