diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 19:52:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-02 20:22:59 +0100 |
commit | b715e522cff7109c370e66d29ba22340c9259c52 (patch) | |
tree | abda37d8d414592c59f8f875a3b1b439c5d81725 /test/DumpPlaylist.cxx | |
parent | 4b0b8315a918be5ad92d5aeb0c7df6d28966b951 (diff) | |
download | mpd-b715e522cff7109c370e66d29ba22340c9259c52.tar.gz mpd-b715e522cff7109c370e66d29ba22340c9259c52.tar.xz mpd-b715e522cff7109c370e66d29ba22340c9259c52.zip |
db_save, state_file: convert to C++
Diffstat (limited to '')
-rw-r--r-- | test/DumpPlaylist.cxx (renamed from test/dump_playlist.c) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/dump_playlist.c b/test/DumpPlaylist.cxx index 566872664..231ae31a2 100644 --- a/test/dump_playlist.c +++ b/test/DumpPlaylist.cxx @@ -18,16 +18,19 @@ */ #include "config.h" +#include "TagSave.hxx" +#include "song.h" + +extern "C" { #include "io_thread.h" #include "input_init.h" #include "input_stream.h" -#include "tag_save.h" #include "conf.h" -#include "song.h" #include "decoder_api.h" #include "decoder_list.h" #include "playlist_list.h" #include "playlist_plugin.h" +} #include <glib.h> |