| 8 | #include "../GUI/GUICommon.h" |
| 9 | |
| 10 | MemWatchTreeNode::MemWatchTreeNode(MemWatchEntry* const entry, MemWatchTreeNode* const parent, |
| 11 | const bool isGroup, QString groupName) |
| 12 | : m_isGroup(isGroup), m_groupName(std::move(groupName)), m_entry(entry), m_parent(parent) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | MemWatchTreeNode::~MemWatchTreeNode() |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected