aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_queue_priority.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-07-28 13:25:12 +0200
committerMax Kellermann <max@duempel.org>2013-07-28 13:25:12 +0200
commitba161ec572b98d3bcf9f735ff122133319fe896a (patch)
treea211690e3a8b7fce1fb6db540228122bead1f2bc /test/test_queue_priority.cxx
parent43f613d9be9aa2953dcfc0aacfbdfb56d5d1a708 (diff)
downloadmpd-ba161ec572b98d3bcf9f735ff122133319fe896a.tar.gz
mpd-ba161ec572b98d3bcf9f735ff122133319fe896a.tar.xz
mpd-ba161ec572b98d3bcf9f735ff122133319fe896a.zip
song: convert header to C++
Diffstat (limited to 'test/test_queue_priority.cxx')
-rw-r--r--test/test_queue_priority.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test_queue_priority.cxx b/test/test_queue_priority.cxx
index 8dd1c3f5f..2e544253d 100644
--- a/test/test_queue_priority.cxx
+++ b/test/test_queue_priority.cxx
@@ -1,6 +1,6 @@
#include "config.h"
#include "Queue.hxx"
-#include "song.h"
+#include "Song.hxx"
#include "Directory.hxx"
#include <glib.h>
@@ -10,14 +10,14 @@ Directory detached_root;
Directory::Directory() {}
Directory::~Directory() {}
-struct song *
-song_dup_detached(const struct song *src)
+Song *
+Song::DupDetached() const
{
- return const_cast<song *>(src);
+ return const_cast<Song *>(this);
}
void
-song_free(gcc_unused struct song *song)
+Song::Free()
{
}
@@ -50,7 +50,7 @@ check_descending_priority(const struct queue *queue,
int
main(gcc_unused int argc, gcc_unused char **argv)
{
- static struct song songs[16];
+ static Song songs[16];
struct queue queue(32);