| 25 | using namespace KDevelop; |
| 26 | |
| 27 | OutlineNode::OutlineNode(const QString& text, OutlineNode* parent) |
| 28 | : m_cachedText(text) |
| 29 | , m_parent(parent) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | OutlineNode::OutlineNode(DUContext* ctx, const QString& name, OutlineNode* parent) |
| 34 | : m_cachedText(name) |
nothing calls this directly
no test coverage detected