mpd/src/config/Path.hxx

20 lines
345 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-04-09 01:17:47 +02:00
#ifndef MPD_CONFIG_PATH_HXX
#define MPD_CONFIG_PATH_HXX
struct ConfigData;
class AllocatedPath;
void
InitPathParser(const ConfigData &config) noexcept;
/**
* Throws #std::runtime_error on error.
*/
AllocatedPath
ParsePath(const char *path);
#endif