| 104 | } |
| 105 | |
| 106 | QVector<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 | |
| 119 | StructDef* StructTreeNode::getStructDef() const |
| 120 | { |
no outgoing calls
no test coverage detected