format: add ability to extract tags from a song

This commit is contained in:
Andrzej Rybczak
2016-01-16 16:31:27 +01:00
parent 9890a100df
commit b48dd14102
2 changed files with 44 additions and 7 deletions

View File

@@ -60,6 +60,10 @@ private:
unsigned m_delimiter;
};
template <typename CharT> using SongTagMap = std::vector<
std::pair<SongTag, std::basic_string<CharT> >
>;
enum class Result { Empty, Missing, Ok };
template <typename CharT>