| 23 | namespace Shapes { |
| 24 | |
| 25 | Node::Node(Shape* shape, int* id) |
| 26 | : FileTree::Node(id, FileTree::Shape) |
| 27 | , shape(shape) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | bool Node::setData(const QModelIndex& index, const QVariant& value, int role) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected