aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-07 08:59:11 +0100
committerMax Kellermann <max@duempel.org>2013-01-07 09:05:01 +0100
commit9f4b906e6cb61def8afddc2ed9bdf826e52e96d2 (patch)
tree2cfe029e0581c059126051b3450163226343a3b9
parent804900df362c7f65736f8863e7be330e1ddf8758 (diff)
volume: convert to C++
-rw-r--r--Makefile.am3
-rw-r--r--src/Main.cxx2
-rw-r--r--src/OtherCommands.cxx2
-rw-r--r--src/PlayerCommands.cxx2
-rw-r--r--src/StateFile.cxx5
-rw-r--r--src/Volume.cxx (renamed from src/volume.c)7
-rw-r--r--src/Volume.hxx (renamed from src/volume.h)7
7 files changed, 13 insertions, 15 deletions
diff --git a/Makefile.am b/Makefile.am
index d4761c95..8ccc04f3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -152,7 +152,6 @@ mpd_headers = \
src/uri.h \
src/utils.h \
src/string_util.h \
- src/volume.h \
src/zeroconf.h src/zeroconf-internal.h \
src/timer.h \
src/archive_api.h \
@@ -306,7 +305,7 @@ src_mpd_SOURCES = \
src/uri.c \
src/utils.c \
src/string_util.c \
- src/volume.c \
+ src/Volume.cxx src/Volume.hxx \
src/SongFilter.cxx src/SongFilter.hxx \
src/PlaylistFile.cxx src/PlaylistFile.hxx \
src/timer.c
diff --git a/src/Main.cxx b/src/Main.cxx
index 37160224..82816fcf 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -34,6 +34,7 @@
#include "Client.hxx"
#include "AllCommands.hxx"
#include "Partition.hxx"
+#include "Volume.hxx"
extern "C" {
#include "daemon.h"
@@ -45,7 +46,6 @@ extern "C" {
#include "sig_handlers.h"
#include "audio_config.h"
#include "output_all.h"
-#include "volume.h"
#include "log.h"
#include "pcm_resample.h"
#include "replay_gain_config.h"
diff --git a/src/OtherCommands.cxx b/src/OtherCommands.cxx
index 9de61675..d467c30e 100644
--- a/src/OtherCommands.cxx
+++ b/src/OtherCommands.cxx
@@ -32,10 +32,10 @@
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
#include "ls.hxx"
+#include "Volume.hxx"
extern "C" {
#include "uri.h"
-#include "volume.h"
#include "stats.h"
}
diff --git a/src/PlayerCommands.cxx b/src/PlayerCommands.cxx
index 2bd6fc4e..5920863a 100644
--- a/src/PlayerCommands.cxx
+++ b/src/PlayerCommands.cxx
@@ -24,12 +24,12 @@
#include "PlaylistPrint.hxx"
#include "UpdateGlue.hxx"
#include "ClientInternal.hxx"
+#include "Volume.hxx"
#include "protocol/Result.hxx"
#include "protocol/ArgParser.hxx"
extern "C" {
#include "audio_format.h"
-#include "volume.h"
#include "replay_gain_config.h"
#include "output_all.h"
}
diff --git a/src/StateFile.cxx b/src/StateFile.cxx
index 1d77b77d..29a560c7 100644
--- a/src/StateFile.cxx
+++ b/src/StateFile.cxx
@@ -23,10 +23,7 @@
#include "PlaylistState.hxx"
#include "TextFile.hxx"
#include "Partition.hxx"
-
-extern "C" {
-#include "volume.h"
-}
+#include "Volume.hxx"
#include <glib.h>
#include <assert.h>
diff --git a/src/volume.c b/src/Volume.cxx
index 549feab9..f6643a90 100644
--- a/src/volume.c
+++ b/src/Volume.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 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,10 +18,13 @@
*/
#include "config.h"
-#include "volume.h"
+#include "Volume.hxx"
+
+extern "C" {
#include "idle.h"
#include "mixer_all.h"
#include "event_pipe.h"
+}
#include <glib.h>
diff --git a/src/volume.h b/src/Volume.hxx
index b08899a8..024b2840 100644
--- a/src/volume.h
+++ b/src/Volume.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 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,10 +17,9 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef MPD_VOLUME_H
-#define MPD_VOLUME_H
+#ifndef MPD_VOLUME_HXX
+#define MPD_VOLUME_HXX
-#include <stdbool.h>
#include <stdio.h>
void volume_init(void);