input/Proxy: use InputStreamPtr

This commit is contained in:
Max Kellermann
2017-12-26 11:37:29 +01:00
parent fb9a2c5431
commit 49619fbd77
9 changed files with 50 additions and 59 deletions

View File

@@ -22,9 +22,9 @@
#include "IcyMetaDataParser.hxx"
#include "tag/Tag.hxx"
IcyInputStream::IcyInputStream(InputStream *_input,
IcyInputStream::IcyInputStream(InputStreamPtr _input,
std::shared_ptr<IcyMetaDataParser> _parser) noexcept
:ProxyInputStream(_input), parser(std::move(_parser))
:ProxyInputStream(std::move(_input)), parser(std::move(_parser))
{
}