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
+3 -3
View File
@@ -80,8 +80,8 @@ public:
virtual QString id() = 0;
const Stream* stream();
void set_stream(const Stream *fs);
StreamPtr stream();
void set_stream(StreamPtr fs);
/**
* @brief Probe a footage file and dump metadata about it
@@ -194,7 +194,7 @@ protected:
bool open_;
private:
const Stream* stream_;
StreamPtr stream_;
};
#endif // DECODER_H