Commit fa3d1156 authored by Max Kellermann's avatar Max Kellermann

playlist_edit: convert to C++

parent 0eb05b82
...@@ -289,7 +289,7 @@ src_mpd_SOURCES = \ ...@@ -289,7 +289,7 @@ src_mpd_SOURCES = \
src/playlist.c \ src/playlist.c \
src/playlist_global.c \ src/playlist_global.c \
src/playlist_control.c \ src/playlist_control.c \
src/playlist_edit.c \ src/PlaylistEdit.cxx \
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.hxx \ src/PlaylistMapper.cxx src/PlaylistMapper.hxx \
......
/* /*
* 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
...@@ -24,12 +24,14 @@ ...@@ -24,12 +24,14 @@
*/ */
#include "config.h" #include "config.h"
extern "C" {
#include "playlist_internal.h" #include "playlist_internal.h"
#include "player_control.h" #include "player_control.h"
#include "database.h" #include "database.h"
#include "uri.h" #include "uri.h"
#include "song.h" #include "song.h"
#include "idle.h" #include "idle.h"
}
#include <stdlib.h> #include <stdlib.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