summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpsvstream.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-05-23 17:00:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-05-23 17:00:28 +0100
commit4b15c7678e0ee4095e82f5336784e8cb7c32c165 (patch)
treec8f898216e918cf3513a0c718b6a6ebbda41fcd1 /lotuswordpro/source/filter/lwpsvstream.hxx
parentb31d06f2ffd2a578cc887966ec79ac4fe1487877 (diff)
fix endianness sufficiently to pass unit tests
Diffstat (limited to 'lotuswordpro/source/filter/lwpsvstream.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpsvstream.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpsvstream.hxx b/lotuswordpro/source/filter/lwpsvstream.hxx
index 4fd0a2054bb3..ff10b13d8ec5 100644
--- a/lotuswordpro/source/filter/lwpsvstream.hxx
+++ b/lotuswordpro/source/filter/lwpsvstream.hxx
@@ -72,6 +72,14 @@ public:
sal_Int64 Tell();
sal_Int64 Seek( sal_Int64 pos );
+ LwpSvStream& operator>>( sal_uInt8& rUInt8 );
+ LwpSvStream& operator>>( sal_uInt16& rUInt16 );
+ LwpSvStream& operator>>( sal_uInt32& rUInt32 );
+
+ LwpSvStream& operator>>( sal_Int8& rInt8 );
+ LwpSvStream& operator>>( sal_Int16& rInt16 );
+ LwpSvStream& operator>>( sal_Int32& rInt32 );
+
static const sal_uInt32 LWP_STREAM_BASE;
LwpSvStream * GetCompressedStream()