16 lines
291 B
C++
16 lines
291 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
#ifndef MPD_INPUT_ARCHIVE_HXX
|
|
#define MPD_INPUT_ARCHIVE_HXX
|
|
|
|
#include "input/Ptr.hxx"
|
|
#include "thread/Mutex.hxx"
|
|
|
|
class Path;
|
|
|
|
InputStreamPtr
|
|
OpenArchiveInputStream(Path path, Mutex &mutex);
|
|
|
|
#endif
|