diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2014-11-10 00:31:53 +0100 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2014-11-11 00:08:23 +0100 |
commit | 8d24c42261c17d18ce723df5a65cc9d1e8dc3a9d (patch) | |
tree | 748e5215b607611a2d8c39625f5645e21bfa5d2c /src/display.h | |
parent | 25708093e6098a510b79dcbc715fa2fa465bd859 (diff) |
format: implement generic format parser and printer
Diffstat (limited to 'src/display.h')
-rw-r--r-- | src/display.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/display.h b/src/display.h index 18817f19..55a9b586 100644 --- a/src/display.h +++ b/src/display.h @@ -22,6 +22,7 @@ #define NCMPCPP_DISPLAY_H #include "interfaces.h" +#include "format.h" #include "menu.h" #include "mutable_song.h" #include "search_engine.h" @@ -32,7 +33,7 @@ std::string Columns(size_t); void SongsInColumns(NC::Menu<MPD::Song> &menu, const ProxySongList &pl); -void Songs(NC::Menu<MPD::Song> &menu, const ProxySongList &pl, const std::string &format); +void Songs(NC::Menu<MPD::Song> &menu, const ProxySongList &pl, const Format::AST<char> &ast); void Tags(NC::Menu<MPD::MutableSong> &menu); |