diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-20 13:12:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-21 06:50:55 +0000 |
commit | c714b43b0137ad253f51e1c65417c9874b8509e5 (patch) | |
tree | c258269d292ec4b65235357e82a70c3b6f364563 /include/oox/helper/binaryoutputstream.hxx | |
parent | 82b896f1f85b510eb72bb6d2f97d29defe1edf8b (diff) |
loplugin:unusedmethods oox
Change-Id: I5381e0da0efc1f951e248cfcfb35fc680ace94e4
Reviewed-on: https://gerrit.libreoffice.org/17225
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/oox/helper/binaryoutputstream.hxx')
-rw-r--r-- | include/oox/helper/binaryoutputstream.hxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/oox/helper/binaryoutputstream.hxx b/include/oox/helper/binaryoutputstream.hxx index 172958667097..52160dae396b 100644 --- a/include/oox/helper/binaryoutputstream.hxx +++ b/include/oox/helper/binaryoutputstream.hxx @@ -70,16 +70,11 @@ public: template< typename Type > void writeValue( Type nValue ); - BinaryOutputStream& WriteInt8(sal_Int8 x) { writeValue(x); return *this; } - BinaryOutputStream& WriteUInt8(sal_uInt8 x) { writeValue(x); return *this; } BinaryOutputStream& WriteInt16(sal_Int16 x) { writeValue(x); return *this; } BinaryOutputStream& WriteUInt16(sal_uInt16 x) { writeValue(x); return *this; } BinaryOutputStream& WriteInt32(sal_Int32 x) { writeValue(x); return *this; } BinaryOutputStream& WriteUInt32(sal_uInt32 x) { writeValue(x); return *this; } BinaryOutputStream& WriteInt64(sal_Int64 x) { writeValue(x); return *this; } - BinaryOutputStream& WriteUInt64(sal_uInt64 x) { writeValue(x); return *this; } - BinaryOutputStream& WriteFloat(float x) { writeValue(x); return *this; } - BinaryOutputStream& WriteDouble(double x) { writeValue(x); return *this; } void writeCompressedUnicodeArray( const OUString& rString, bool bCompressed, bool bAllowNulChars = false ); @@ -154,10 +149,6 @@ public: /** Write nBytes bytes from the (preallocated!) buffer pMem. */ virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE; - /** Returns the XOutputStream interface of the wrapped output stream. */ - ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > - getXOutputStream() const { return mxOutStrm; } - private: StreamDataSequence maBuffer; ///< Data buffer used in writeMemory() function. ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream > |