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

Method getChildNames

Source/Structs/StructTreeNode.cpp:106–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106QVector<QString> StructTreeNode::getChildNames()
107{
108 if (m_children.isEmpty())
109 return QVector<QString>();
110
111 QVector<QString> names = QVector<QString>();
112 for (StructTreeNode* child : m_children)
113 {
114 names.push_back(child->getName());
115 }
116 return names;
117}
118
119StructDef* StructTreeNode::getStructDef() const
120{

Callers 2

dropMimeDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected