diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-08 08:55:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-08 08:55:33 +0100 |
commit | 4788d20ec411d2688af59715944d32fc82ad4d43 (patch) | |
tree | f3f9fc72a0a0afb56a839b3f32d56a29eb5f7d6c /include | |
parent | f66db2516475da18fc7e59972aa08a5eac288604 (diff) |
Non-inline virtual dtors of exported classes
Change-Id: I7b3597d48bf7b0196b98c869329d2fb1a46fa8f2
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); |