summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-05-31 08:36:39 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-05-31 08:36:39 +0000
commitd148b0125f595ee6a75740855533cf81e7dd67d9 (patch)
treedf63b58b17e5357001f3cc2af03eaf650709b044 /package
parentb238840966bc3735ce0e9d52dd73d9912bce7290 (diff)
#87099# Optimisation for stream operators
Diffstat (limited to 'package')
-rw-r--r--package/inc/ByteChucker.hxx6
-rw-r--r--package/inc/ByteGrabber.hxx7
2 files changed, 9 insertions, 4 deletions
diff --git a/package/inc/ByteChucker.hxx b/package/inc/ByteChucker.hxx
index 895317d5b0e4..2ba8a6c569f2 100644
--- a/package/inc/ByteChucker.hxx
+++ b/package/inc/ByteChucker.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ByteChucker.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: mtg $ $Date: 2001-04-27 14:56:05 $
+ * last change: $Author: mtg $ $Date: 2001-05-31 09:36:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -73,6 +73,8 @@ class ByteChucker
protected:
com::sun::star::uno::Reference < com::sun::star::io::XOutputStream > xStream;
com::sun::star::uno::Reference < com::sun::star::io::XSeekable > xSeek;
+ com::sun::star::uno::Sequence < sal_Int8 > a1Sequence, a2Sequence, a4Sequence;
+ sal_Int8 *p1Sequence, *p2Sequence, *p4Sequence;
public:
ByteChucker (com::sun::star::uno::Reference<com::sun::star::io::XOutputStream> xOstream);
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx
index 1c2f15ca5664..3cbb3687dde5 100644
--- a/package/inc/ByteGrabber.hxx
+++ b/package/inc/ByteGrabber.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ByteGrabber.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: mtg $ $Date: 2001-04-27 14:56:05 $
+ * last change: $Author: mtg $ $Date: 2001-05-31 09:36:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -73,6 +73,9 @@ class ByteGrabber
protected:
com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xStream;
com::sun::star::uno::Reference < com::sun::star::io::XSeekable > xSeek;
+ com::sun::star::uno::Sequence < sal_Int8 > aSequence;
+ sal_Int8 *pSequence;
+
public:
ByteGrabber (com::sun::star::uno::Reference < com::sun::star::io::XInputStream > xIstream);
~ByteGrabber();