| 25 | namespace FileTree { |
| 26 | |
| 27 | Node::Node(int* id, Type type) |
| 28 | : sideStrList(QObject::tr("Top|Bottom").split('|')) |
| 29 | , type(type) |
| 30 | , m_id(id) |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | Node::~Node() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected