diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/streamwrap.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx index e2303a1ac58a..f0b52aa060a0 100644 --- a/include/unotools/streamwrap.hxx +++ b/include/unotools/streamwrap.hxx @@ -82,6 +82,8 @@ class UNOTOOLS_DLLPUBLIC OSeekableInputStreamWrapper : public ::cppu::ImplInheri { protected: OSeekableInputStreamWrapper() {} + ~OSeekableInputStreamWrapper() override; + public: OSeekableInputStreamWrapper(SvStream& _rStream); OSeekableInputStreamWrapper(SvStream* _pStream, bool _bOwner = false); @@ -146,6 +148,9 @@ private: class UNOTOOLS_DLLPUBLIC OStreamWrapper : public ::cppu::ImplInheritanceHelper3 < OSeekableInputStreamWrapper, css::io::XStream, css::io::XOutputStream, css::io::XTruncate > { +protected: + ~OStreamWrapper() override; + public: OStreamWrapper(SvStream& _rStream); |