diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 22:25:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 22:25:57 +0200 |
commit | 31bc94160a4dc7b8749cca8c3f7b703548fcb4f4 (patch) | |
tree | 68851b5c81cc064ef061ff400e3cc61cc9352f0e | |
parent | 9e5d2c5bb7093dd10337a5b77f6271e06baa0ebe (diff) | |
download | mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.tar.gz mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.tar.xz mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.zip |
song_sort: convert to C++
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | src/Directory.cxx | 2 | ||||
-rw-r--r-- | src/SongSort.cxx (renamed from src/song_sort.c) | 9 | ||||
-rw-r--r-- | src/SongSort.hxx (renamed from src/song_sort.h) | 6 |
4 files changed, 12 insertions, 9 deletions
diff --git a/Makefile.am b/Makefile.am index cb3539021..d40f92a22 100644 --- a/Makefile.am +++ b/Makefile.am @@ -88,7 +88,6 @@ mpd_headers = \ src/replay_gain_ape.h \ src/TimePrint.cxx src/TimePrint.hxx \ src/song.h \ - src/song_sort.c src/song_sort.h \ src/stats.h \ src/tag.h \ src/tag_internal.h \ @@ -226,6 +225,7 @@ src_mpd_SOURCES = \ src/SongUpdate.cxx \ src/SongPrint.cxx src/SongPrint.hxx \ src/SongSave.cxx src/SongSave.hxx \ + src/SongSort.cxx src/SongSort.hxx \ src/resolver.c src/resolver.h \ src/SocketUtil.cxx src/SocketUtil.hxx \ src/StateFile.cxx src/StateFile.hxx \ @@ -1054,7 +1054,7 @@ test_DumpDatabase_SOURCES = test/DumpDatabase.cxx \ src/Directory.cxx src/DirectorySave.cxx \ src/PlaylistVector.cxx src/PlaylistDatabase.cxx \ src/DatabaseLock.cxx src/DatabaseSave.cxx \ - src/Song.cxx src/song_sort.c src/SongSave.cxx \ + src/Song.cxx src/SongSave.cxx src/SongSort.cxx \ src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx \ src/SongFilter.cxx \ src/TextFile.cxx diff --git a/src/Directory.cxx b/src/Directory.cxx index 2b1a34cbf..c96ac927d 100644 --- a/src/Directory.cxx +++ b/src/Directory.cxx @@ -22,10 +22,10 @@ #include "SongFilter.hxx" #include "PlaylistVector.hxx" #include "DatabaseLock.hxx" +#include "SongSort.hxx" extern "C" { #include "song.h" -#include "song_sort.h" #include "util/list_sort.h" } diff --git a/src/song_sort.c b/src/SongSort.cxx index 397d2c7a9..8728614e0 100644 --- a/src/song_sort.c +++ b/src/SongSort.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2012 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -18,12 +18,15 @@ */ #include "config.h" -#include "song_sort.h" +#include "SongSort.hxx" #include "song.h" #include "util/list.h" -#include "util/list_sort.h" #include "tag.h" +extern "C" { +#include "util/list_sort.h" +} + #include <glib.h> #include <assert.h> diff --git a/src/song_sort.h b/src/SongSort.hxx index ec124cf4a..b3b67b0c0 100644 --- a/src/song_sort.h +++ b/src/SongSort.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2012 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,8 +17,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef MPD_SONG_SORT_H -#define MPD_SONG_SORT_H +#ifndef MPD_SONG_SORT_HXX +#define MPD_SONG_SORT_HXX struct list_head; |