diff options
author | John LeMoyne Castle <jlc@mail2lee.com> | 2010-12-21 15:47:55 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2010-12-21 15:47:55 +0000 |
commit | 5c7eb1c246a645b9157286b66954d8f149eefd96 (patch) | |
tree | 71df01a7414f88a584b25df7fe87fb3c4d0ab58d /tools/inc | |
parent | 0da3a0b0a58a76d90ad7f123eb7648a8c3482152 (diff) |
68bit currency enhancement
Diffstat (limited to 'tools/inc')
-rw-r--r-- | tools/inc/tools/stream.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/inc/tools/stream.hxx b/tools/inc/tools/stream.hxx index 1706ee8ea714..dc34cdc2d96c 100644 --- a/tools/inc/tools/stream.hxx +++ b/tools/inc/tools/stream.hxx @@ -354,6 +354,7 @@ public: SvStream& operator>>( sal_uInt16& rUInt16 ); SvStream& operator>>( sal_uInt32& rUInt32 ); + SvStream& operator>>( sal_uInt64& rUInt64 ); SvStream& operator>>( long& rLong ); SvStream& operator>>( short& rShort ); SvStream& operator>>( int& rInt ); @@ -372,6 +373,7 @@ public: SvStream& operator<<( sal_uInt16 nUInt16 ); SvStream& operator<<( sal_uInt32 nUInt32 ); + SvStream& operator<<( sal_uInt64 nuInt64 ); SvStream& operator<<( long nLong ); SvStream& operator<<( short nShort ); SvStream& operator<<( int nInt ); |