moved more objects to shared ptrs

This commit is contained in:
itsmattkc
2019-08-09 08:21:54 +10:00
parent dfd33310a2
commit f26eea1620
12 changed files with 33 additions and 28 deletions
+2 -2
View File
@@ -42,12 +42,12 @@ Decoder::~Decoder()
{
}
const Stream *Decoder::stream()
StreamPtr Decoder::stream()
{
return stream_;
}
void Decoder::set_stream(const Stream *fs)
void Decoder::set_stream(StreamPtr fs)
{
Close();