summaryrefslogtreecommitdiff
path: root/include/oox/ole/axbinarywriter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/ole/axbinarywriter.hxx')
-rw-r--r--include/oox/ole/axbinarywriter.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/oox/ole/axbinarywriter.hxx b/include/oox/ole/axbinarywriter.hxx
index abb2fafbe645..62029bb2f8ac 100644
--- a/include/oox/ole/axbinarywriter.hxx
+++ b/include/oox/ole/axbinarywriter.hxx
@@ -33,22 +33,22 @@ public:
/** Returns the size of the data this stream represents, if the wrapped
stream supports the size() operation. */
- virtual sal_Int64 size() const;
+ virtual sal_Int64 size() const SAL_OVERRIDE;
/** Return the current relative stream position (relative to position of
the wrapped stream at construction time). */
- virtual sal_Int64 tell() const;
+ virtual sal_Int64 tell() const SAL_OVERRIDE;
/** Seeks the stream to the passed relative position, if it is behind the
current position. */
- virtual void seek( sal_Int64 nPos );
+ virtual void seek( sal_Int64 nPos ) SAL_OVERRIDE;
/** Closes the input stream but not the wrapped stream. */
- virtual void close();
+ virtual void close() SAL_OVERRIDE;
/** Reads nBytes bytes to the passed sequence.
@return Number of bytes really read. */
- virtual void writeData( const StreamDataSequence& orData, size_t nAtomSize = 1 );
+ virtual void writeData( const StreamDataSequence& orData, size_t nAtomSize = 1 ) SAL_OVERRIDE;
/** Reads nBytes bytes to the (existing) buffer opMem.
@return Number of bytes really read. */
- virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 );
+ virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE;
/** Aligns the stream to a multiple of the passed size (relative to the
position of the wrapped stream at construction time). */
@@ -125,7 +125,7 @@ private:
explicit PairProperty( AxPairData& rPairData ) :
mrPairData( rPairData ) {}
- virtual bool writeProperty( AxAlignedOutputStream& rOutStrm );
+ virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE;
};
/** Complex property for a string value. */
@@ -136,7 +136,7 @@ private:
explicit StringProperty( OUString& rValue, sal_uInt32 nSize ) :
mrValue( rValue ), mnSize( nSize ) {}
- virtual bool writeProperty( AxAlignedOutputStream& rOutStrm );
+ virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE;
};
/** Stream property for a picture or mouse icon. */
@@ -146,7 +146,7 @@ private:
explicit PictureProperty( StreamDataSequence& rPicData ) :
mrPicData( rPicData ) {}
- virtual bool writeProperty( AxAlignedOutputStream& rOutStrm );
+ virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE;
};
typedef RefVector< ComplexProperty > ComplexPropVector;