Commit 67b46a15 authored by Max Kellermann's avatar Max Kellermann

playlist_{any,song,queue}: convert to C++

parent 83c7e1e1
...@@ -151,9 +151,6 @@ mpd_headers = \ ...@@ -151,9 +151,6 @@ mpd_headers = \
src/playlist_state.h \ src/playlist_state.h \
src/playlist_plugin.h \ src/playlist_plugin.h \
src/playlist_list.h \ src/playlist_list.h \
src/playlist_any.h \
src/playlist_song.h \
src/playlist_queue.h \
src/playlist_vector.h \ src/playlist_vector.h \
src/playlist_database.h \ src/playlist_database.h \
src/playlist/extm3u_playlist_plugin.h \ src/playlist/extm3u_playlist_plugin.h \
...@@ -317,11 +314,11 @@ src_mpd_SOURCES = \ ...@@ -317,11 +314,11 @@ src_mpd_SOURCES = \
src/playlist_edit.c \ src/playlist_edit.c \
src/PlaylistPrint.cxx src/PlaylistPrint.hxx \ src/PlaylistPrint.cxx src/PlaylistPrint.hxx \
src/PlaylistSave.cxx src/PlaylistSave.hxx \ src/PlaylistSave.cxx src/PlaylistSave.hxx \
src/PlaylistMapper.cxx src/PlaylistMapper.h \ src/PlaylistMapper.cxx src/PlaylistMapper.hxx \
src/playlist_any.c \ src/PlaylistAny.cxx src/PlaylistAny.hxx \
src/playlist_song.c \ src/PlaylistSong.cxx src/PlaylistSong.hxx \
src/playlist_state.c \ src/playlist_state.c \
src/playlist_queue.c \ src/PlaylistQueue.cxx src/PlaylistQueue.hxx \
src/playlist_vector.c \ src/playlist_vector.c \
src/playlist_database.c \ src/playlist_database.c \
src/queue.c \ src/queue.c \
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -18,11 +18,14 @@ ...@@ -18,11 +18,14 @@
*/ */
#include "config.h" #include "config.h"
#include "playlist_any.h" #include "PlaylistAny.hxx"
#include "PlaylistMapper.hxx"
extern "C" {
#include "playlist_list.h" #include "playlist_list.h"
#include "PlaylistMapper.h"
#include "uri.h" #include "uri.h"
#include "input_stream.h" #include "input_stream.h"
}
#include <assert.h> #include <assert.h>
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef MPD_PLAYLIST_ANY_H #ifndef MPD_PLAYLIST_ANY_HXX
#define MPD_PLAYLIST_ANY_H #define MPD_PLAYLIST_ANY_HXX
#include <glib.h> #include <glib.h>
......
/* /*
* Copyright (C) 2003-2012 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
#include "PlaylistPrint.hxx" #include "PlaylistPrint.hxx"
#include "PlaylistSave.hxx" #include "PlaylistSave.hxx"
#include "PlaylistFile.hxx" #include "PlaylistFile.hxx"
#include "PlaylistQueue.hxx"
extern "C" { extern "C" {
#include "protocol/argparser.h" #include "protocol/argparser.h"
#include "protocol/result.h" #include "protocol/result.h"
#include "playlist.h" #include "playlist.h"
#include "playlist_queue.h"
#include "time_print.h" #include "time_print.h"
#include "ls.h" #include "ls.h"
#include "uri.h" #include "uri.h"
......
/* /*
* Copyright (C) 2003-2012 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include "PlaylistMapper.h" #include "PlaylistMapper.hxx"
#include "PlaylistFile.hxx" #include "PlaylistFile.hxx"
extern "C" { extern "C" {
......
/* /*
* Copyright (C) 2003-2012 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -17,15 +17,13 @@ ...@@ -17,15 +17,13 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef MPD_PLAYLIST_MAPPER_H #ifndef MPD_PLAYLIST_MAPPER_HXX
#define MPD_PLAYLIST_MAPPER_H #define MPD_PLAYLIST_MAPPER_HXX
#include <glib.h> #include <glib.h>
struct input_stream; struct input_stream;
G_BEGIN_DECLS
/** /**
* Opens a playlist from an URI relative to the playlist or music * Opens a playlist from an URI relative to the playlist or music
* directory. * directory.
...@@ -38,6 +36,4 @@ struct playlist_provider * ...@@ -38,6 +36,4 @@ struct playlist_provider *
playlist_mapper_open(const char *uri, GMutex *mutex, GCond *cond, playlist_mapper_open(const char *uri, GMutex *mutex, GCond *cond,
struct input_stream **is_r); struct input_stream **is_r);
G_END_DECLS
#endif #endif
/* /*
* Copyright (C) 2003-2012 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -20,13 +20,13 @@ ...@@ -20,13 +20,13 @@
#include "config.h" #include "config.h"
#include "PlaylistPrint.hxx" #include "PlaylistPrint.hxx"
#include "PlaylistFile.hxx" #include "PlaylistFile.hxx"
#include "PlaylistAny.hxx"
#include "PlaylistSong.hxx"
#include "QueuePrint.hxx" #include "QueuePrint.hxx"
extern "C" { extern "C" {
#include "playlist_list.h" #include "playlist_list.h"
#include "playlist_plugin.h" #include "playlist_plugin.h"
#include "playlist_any.h"
#include "playlist_song.h"
#include "playlist.h" #include "playlist.h"
#include "song_print.h" #include "song_print.h"
#include "song.h" #include "song.h"
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -18,13 +18,16 @@ ...@@ -18,13 +18,16 @@
*/ */
#include "config.h" #include "config.h"
#include "playlist_queue.h" #include "PlaylistQueue.hxx"
#include "playlist_plugin.h" #include "playlist_plugin.h"
#include "playlist_any.h" #include "PlaylistAny.hxx"
#include "playlist_song.h" #include "PlaylistSong.hxx"
extern "C" {
#include "playlist.h" #include "playlist.h"
#include "song.h" #include "song.h"
#include "input_stream.h" #include "input_stream.h"
}
enum playlist_result enum playlist_result
playlist_load_into_queue(const char *uri, struct playlist_provider *source, playlist_load_into_queue(const char *uri, struct playlist_provider *source,
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
* \brief Glue between playlist plugin and the play queue * \brief Glue between playlist plugin and the play queue
*/ */
#ifndef MPD_PLAYLIST_QUEUE_H #ifndef MPD_PLAYLIST_QUEUE_HXX
#define MPD_PLAYLIST_QUEUE_H #define MPD_PLAYLIST_QUEUE_HXX
#include "playlist_error.h" #include "playlist_error.h"
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -18,7 +18,9 @@ ...@@ -18,7 +18,9 @@
*/ */
#include "config.h" #include "config.h"
#include "playlist_song.h" #include "PlaylistSong.hxx"
extern "C" {
#include "database.h" #include "database.h"
#include "mapper.h" #include "mapper.h"
#include "song.h" #include "song.h"
...@@ -26,6 +28,7 @@ ...@@ -26,6 +28,7 @@
#include "path.h" #include "path.h"
#include "ls.h" #include "ls.h"
#include "tag.h" #include "tag.h"
}
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef MPD_PLAYLIST_SONG_H #ifndef MPD_PLAYLIST_SONG_HXX
#define MPD_PLAYLIST_SONG_H #define MPD_PLAYLIST_SONG_HXX
#include <stdbool.h> #include <stdbool.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment