summaryrefslogtreecommitdiff
path: root/include/oox/helper/binaryinputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/binaryinputstream.hxx')
-rw-r--r--include/oox/helper/binaryinputstream.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx
index 36edfe351e38..af4cf4a3c8af 100644
--- a/include/oox/helper/binaryinputstream.hxx
+++ b/include/oox/helper/binaryinputstream.hxx
@@ -261,19 +261,19 @@ public:
/** Closes the input stream. Does also close the wrapped UNO input stream
if bAutoClose has been set to true in the constructor. */
- virtual void close() SAL_OVERRIDE;
+ virtual void close() override;
/** Reads nBytes bytes to the passed sequence.
@return Number of bytes really read. */
- virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Reads nBytes bytes to the (existing) buffer opMem.
@return Number of bytes really read. */
- virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Seeks the stream forward by the passed number of bytes. This works for
non-seekable streams too. */
- virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
private:
StreamDataSequence maBuffer; ///< Data buffer used in readMemory() function.
@@ -302,15 +302,15 @@ public:
/** Reads nBytes bytes to the passed sequence.
@return Number of bytes really read. */
- virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Reads nBytes bytes to the (existing) buffer opMem.
@return Number of bytes really read. */
- virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Seeks the stream forward by the passed number of bytes. This works for
non-seekable streams too. */
- virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
private:
/** Returns the number of bytes available in the sequence for the passed byte count. */
@@ -347,31 +347,31 @@ public:
/** Returns the size of the data block in the wrapped stream offered by
this wrapper. */
- virtual sal_Int64 size() const SAL_OVERRIDE;
+ virtual sal_Int64 size() const override;
/** Returns the current relative stream position. */
- virtual sal_Int64 tell() const SAL_OVERRIDE;
+ virtual sal_Int64 tell() const override;
/** Seeks the stream to the passed relative position, if the wrapped stream
is seekable. */
- virtual void seek( sal_Int64 nPos ) SAL_OVERRIDE;
+ virtual void seek( sal_Int64 nPos ) override;
/** Closes the input stream but not the wrapped stream. */
- virtual void close() SAL_OVERRIDE;
+ virtual void close() override;
/** Reads nBytes bytes to the passed sequence. Does not read out of the
data block whose size has been specified on construction.
@return Number of bytes really read. */
- virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Reads nBytes bytes to the (existing) buffer opMem. Does not read out of
the data block whose size has been specified on construction.
@return Number of bytes really read. */
- virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
/** Seeks the stream forward by the passed number of bytes. This works for
non-seekable streams too. Does not seek out of the data block. */
- virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
+ virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) override;
private:
/** Returns the number of bytes available in the sequence for the passed byte count. */