diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-11 08:21:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-11 14:57:34 +0200 |
commit | 70d4989c2726e2b640e725be7e7e923c4047b627 (patch) | |
tree | 12d3b5e5df1ee00967fde19e70b5777287d88ae8 /package/inc/ByteChucker.hxx | |
parent | 5d75ef73a2e77e93da1ac3cf77c7dbb170107935 (diff) |
remove operator>> methods
in favour of ReadXXX methods.
Change-Id: I242b92da7dbcafe22aef69dc7348ac58dadc9241
Diffstat (limited to 'package/inc/ByteChucker.hxx')
-rw-r--r-- | package/inc/ByteChucker.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/inc/ByteChucker.hxx b/package/inc/ByteChucker.hxx index 4fb0c1c6270f..7e3e60c0ce65 100644 --- a/package/inc/ByteChucker.hxx +++ b/package/inc/ByteChucker.hxx @@ -48,12 +48,12 @@ public: sal_Int64 GetPosition() throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException); - ByteChucker& operator << (sal_Int8 nInt8); - ByteChucker& operator << (sal_Int16 nInt16); - ByteChucker& operator << (sal_Int32 nInt32); - ByteChucker& operator << (sal_uInt8 nuInt8); - ByteChucker& operator << (sal_uInt16 nuInt16); - ByteChucker& operator << (sal_uInt32 nuInt32); + ByteChucker& WriteInt8(sal_Int8 nInt8); + ByteChucker& WriteInt16(sal_Int16 nInt16); + ByteChucker& WriteInt32(sal_Int32 nInt32); + ByteChucker& WriteUInt8(sal_uInt8 nuInt8); + ByteChucker& WriteUInt16(sal_uInt16 nuInt16); + ByteChucker& WriteUInt32(sal_uInt32 nuInt32); }; #endif |