Switch to unified view

a/upmpd/ohplaylist.hxx b/upmpd/ohplaylist.hxx
...
...
62
    // State variable storage
62
    // State variable storage
63
    unordered_map<string, string> m_state;
63
    unordered_map<string, string> m_state;
64
    UpMpd *m_dev;
64
    UpMpd *m_dev;
65
    UpMpdRenderCtl *m_ctl;
65
    UpMpdRenderCtl *m_ctl;
66
66
67
    // Storage for song metadata, indexed by MPD song queue id. The
67
    // Storage for song metadata, indexed by URL.  This used to be
68
    // indexed by song id, but this does not survive MPD restarts.
68
    // data is the DIDL XML string.
69
    // The data is the DIDL XML string.
69
    std::unordered_map<int, std::string> m_metacache;
70
    std::unordered_map<std::string, std::string> m_metacache;
70
};
71
};
71
72
72
#endif /* _OHPLAYLIST_H_X_INCLUDED_ */
73
#endif /* _OHPLAYLIST_H_X_INCLUDED_ */