summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/biffinputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/biffinputstream.hxx')
-rw-r--r--sc/source/filter/inc/biffinputstream.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/inc/biffinputstream.hxx b/sc/source/filter/inc/biffinputstream.hxx
index ca11f905f4d7..11f324677bbd 100644
--- a/sc/source/filter/inc/biffinputstream.hxx
+++ b/sc/source/filter/inc/biffinputstream.hxx
@@ -209,24 +209,24 @@ public:
// BinaryStreamBase interface (seeking) -----------------------------------
/** Returns the data size of the whole record without record headers. */
- virtual sal_Int64 size() const;
+ virtual sal_Int64 size() const SAL_OVERRIDE;
/** Returns the position inside of the whole record content. */
- virtual sal_Int64 tell() const;
+ virtual sal_Int64 tell() const SAL_OVERRIDE;
/** Seeks in record content to the specified position. */
- virtual void seek( sal_Int64 nRecPos );
+ virtual void seek( sal_Int64 nRecPos ) SAL_OVERRIDE;
/** Closes the input stream but not the wrapped stream. */
- virtual void close();
+ virtual void close() SAL_OVERRIDE;
// BinaryInputStream interface (stream read access) -----------------------
/** 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 );
+ virtual sal_Int32 readData( StreamDataSequence& orData, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
/** Reads nBytes bytes and copies them to the passed buffer opMem.
@return Number of bytes really read. */
- virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 );
+ virtual sal_Int32 readMemory( void* opMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
/** Seeks forward inside the current record. */
- virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 );
+ virtual void skip( sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
/** Stream operator for integral and floating-point types. */
template< typename Type >