replace ProxySongList with NC::List and SongList

This commit is contained in:
Andrzej Rybczak
2015-05-10 12:14:56 +02:00
parent a7dab01eff
commit a8e2ec5ed0
32 changed files with 951 additions and 766 deletions

View File

@@ -24,6 +24,13 @@
#include <boost/locale/encoding_utf.hpp>
#include <utility>
template <typename ValueT>
struct pointer_extractor
{
typedef pointer_extractor type;
ValueT *operator()(ValueT &v) const { return &v; }
};
// identity function object
struct id_
{