summaryrefslogtreecommitdiff
path: root/include/oox/helper/binarystreambase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/binarystreambase.hxx')
-rw-r--r--include/oox/helper/binarystreambase.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/oox/helper/binarystreambase.hxx b/include/oox/helper/binarystreambase.hxx
index 0f794ede13b0..fc7f3c39bc0e 100644
--- a/include/oox/helper/binarystreambase.hxx
+++ b/include/oox/helper/binarystreambase.hxx
@@ -132,13 +132,13 @@ public:
virtual ~BinaryXSeekableStream();
/** Returns the size of the stream, if wrapped stream is seekable, otherwise -1. */
- virtual sal_Int64 size() const;
+ virtual sal_Int64 size() const SAL_OVERRIDE;
/** Returns the current stream position, if wrapped stream is seekable, otherwise -1. */
- virtual sal_Int64 tell() const;
+ virtual sal_Int64 tell() const SAL_OVERRIDE;
/** Seeks the stream to the passed position, if wrapped stream is seekable. */
- virtual void seek( sal_Int64 nPos );
+ virtual void seek( sal_Int64 nPos ) SAL_OVERRIDE;
/** Releases the reference to the UNO XSeekable interface. */
- virtual void close();
+ virtual void close() SAL_OVERRIDE;
protected:
explicit BinaryXSeekableStream(
@@ -162,13 +162,13 @@ class OOX_DLLPUBLIC SequenceSeekableStream : public virtual BinaryStreamBase
{
public:
/** Returns the size of the wrapped data sequence. */
- virtual sal_Int64 size() const;
+ virtual sal_Int64 size() const SAL_OVERRIDE;
/** Returns the current stream position. */
- virtual sal_Int64 tell() const;
+ virtual sal_Int64 tell() const SAL_OVERRIDE;
/** Seeks the stream to the passed position. */
- virtual void seek( sal_Int64 nPos );
+ virtual void seek( sal_Int64 nPos ) SAL_OVERRIDE;
/** Releases the reference to the data sequence. */
- virtual void close();
+ virtual void close() SAL_OVERRIDE;
protected:
explicit SequenceSeekableStream( const StreamDataSequence& rData );