Esempio n. 1
0
string getNodeAttr(const xml_node& node, const string& attrName) {
  string result {""};
  getNodeAttr(result, node, attrName);
  return result;
}
Esempio n. 2
0
struct stat NodeSystem::getAttributes(FUSE::Handle handle) const {
    auto& parentNodeInfo = getNodeInfo(handle);
    return getNodeAttr(parentNodeInfo.metadata, parentNodeInfo.node);
}