mpd/src/input/plugins/ArchiveInputPlugin.hxx

35 lines
1.1 KiB
C++
Raw Normal View History

/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 The Music Player Daemon Project
* http://www.musicpd.org
2008-12-16 21:42:34 +01:00
*
* 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.
2008-12-16 21:42:34 +01:00
*/
2013-01-24 19:18:58 +01:00
#ifndef MPD_INPUT_ARCHIVE_HXX
#define MPD_INPUT_ARCHIVE_HXX
2008-12-16 21:42:34 +01:00
class InputStream;
class Path;
class Mutex;
class Cond;
class Error;
extern const struct InputPlugin input_plugin_archive;
2008-12-16 21:42:34 +01:00
InputStream *
OpenArchiveInputStream(Path path, Mutex &mutex, Cond &cond, Error &error);
2008-12-16 21:42:34 +01:00
#endif