| 488 | } |
| 489 | |
| 490 | std::string InotifyTree::InotifyNode::createFullPath(std::string parentPath, std::string name) { |
| 491 | std::stringstream fullPathStream; |
| 492 | if (name == "") { |
| 493 | return parentPath; |
| 494 | } |
| 495 | fullPathStream |
| 496 | << parentPath |
| 497 | << '/' |
| 498 | << name; |
| 499 | |
| 500 | return fullPathStream.str(); |
| 501 | } |
| 502 | |
| 503 | InotifyTree::InotifyNode *InotifyTree::InotifyNode::pullChild(std::string name) { |
| 504 | auto child = mChildren->find(name); |
nothing calls this directly
no outgoing calls
no test coverage detected