diff options
author | Max Kellermann <max@duempel.org> | 2013-01-15 18:22:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-15 20:20:51 +0100 |
commit | 70879356560d9b7f0343cc0f0cbd8331984cf96a (patch) | |
tree | 73b369f887a6f9d2773c3206eaeb5f4e3f7566fa /src/output/HttpdOutputPlugin.hxx | |
parent | 5822daa63de641419dcecd19e81f1c4190bd1cce (diff) | |
download | mpd-70879356560d9b7f0343cc0f0cbd8331984cf96a.tar.gz mpd-70879356560d9b7f0343cc0f0cbd8331984cf96a.tar.xz mpd-70879356560d9b7f0343cc0f0cbd8331984cf96a.zip |
output/httpd: convert to C++
Diffstat (limited to 'src/output/HttpdOutputPlugin.hxx')
-rw-r--r-- | src/output/HttpdOutputPlugin.hxx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/output/HttpdOutputPlugin.hxx b/src/output/HttpdOutputPlugin.hxx new file mode 100644 index 000000000..c74d2bd4a --- /dev/null +++ b/src/output/HttpdOutputPlugin.hxx @@ -0,0 +1,25 @@ +/* + * 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 + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_HTTPD_OUTPUT_PLUGIN_HXX +#define MPD_HTTPD_OUTPUT_PLUGIN_HXX + +extern const struct audio_output_plugin httpd_output_plugin; + +#endif |