summaryrefslogtreecommitdiff
path: root/package/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-11 08:21:51 +0200
committerNoel Grandin <noel@peralex.com>2014-12-11 14:57:34 +0200
commit70d4989c2726e2b640e725be7e7e923c4047b627 (patch)
tree12d3b5e5df1ee00967fde19e70b5777287d88ae8 /package/inc
parent5d75ef73a2e77e93da1ac3cf77c7dbb170107935 (diff)
remove operator>> methods
in favour of ReadXXX methods. Change-Id: I242b92da7dbcafe22aef69dc7348ac58dadc9241
Diffstat (limited to 'package/inc')
-rw-r--r--package/inc/ByteChucker.hxx12
-rw-r--r--package/inc/ByteGrabber.hxx12
2 files changed, 12 insertions, 12 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
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx
index 85dd6da5020c..26df1b19a131 100644
--- a/package/inc/ByteGrabber.hxx
+++ b/package/inc/ByteGrabber.hxx
@@ -58,12 +58,12 @@ public:
sal_Int64 SAL_CALL getLength( )
throw(::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
- ByteGrabber& operator >> (sal_Int8& rInt8);
- ByteGrabber& operator >> (sal_Int16& rInt16);
- ByteGrabber& operator >> (sal_Int32& rInt32);
- ByteGrabber& operator >> (sal_uInt8& ruInt8);
- ByteGrabber& operator >> (sal_uInt16& ruInt16);
- ByteGrabber& operator >> (sal_uInt32& ruInt32);
+ ByteGrabber& ReadInt8(sal_Int8& rInt8);
+ ByteGrabber& ReadInt16(sal_Int16& rInt16);
+ ByteGrabber& ReadInt32(sal_Int32& rInt32);
+ ByteGrabber& ReadUInt8(sal_uInt8& ruInt8);
+ ByteGrabber& ReadUInt16(sal_uInt16& ruInt16);
+ ByteGrabber& ReadUInt32(sal_uInt32& ruInt32);
};
#endif