Switch to unified view
a/libupnpp/cdircontent.hxx | b/libupnpp/cdircontent.hxx | ||
---|---|---|---|
... |
... |
||
71 | * upnp:originalTrackNumber, upnp:genre). Use m_title instead |
71 | * upnp:originalTrackNumber, upnp:genre). Use m_title instead |
72 | * for dc:title. |
72 | * for dc:title. |
73 | * @param[out] value |
73 | * @param[out] value |
74 | * @return true if found. |
74 | * @return true if found. |
75 | */ |
75 | */ |
76 | bool getprop(const string& name, string& value) const |
76 | bool getprop(const std::string& name, std::string& value) const |
77 | { |
77 | { |
78 | std::map<std::string, std::string>::const_iterator it = |
78 | std::map<std::string, std::string>::const_iterator it = |
79 | m_props.find(name); |
79 | m_props.find(name); |
80 | if (it == m_props.end()) |
80 | if (it == m_props.end()) |
81 | return false; |
81 | return false; |