summaryrefslogtreecommitdiff
path: root/package/inc/CRC32.hxx
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2001-05-31 08:37:33 +0000
committerMartin Gallwey <mtg@openoffice.org>2001-05-31 08:37:33 +0000
commit7782f736c5900340e15a5a36d408ea25470e72d6 (patch)
tree2902d625756fae7748329a9a625d8e9adcdf9a72 /package/inc/CRC32.hxx
parentd148b0125f595ee6a75740855533cf81e7dd67d9 (diff)
#87099# Added updateStream method
Diffstat (limited to 'package/inc/CRC32.hxx')
-rw-r--r--package/inc/CRC32.hxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/package/inc/CRC32.hxx b/package/inc/CRC32.hxx
index f92a16a3cc45..9a765d1c4090 100644
--- a/package/inc/CRC32.hxx
+++ b/package/inc/CRC32.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CRC32.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:37:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,8 +64,11 @@
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_H_
#include <com/sun/star/uno/Sequence.h>
#endif
-#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HDL_
-#include <com/sun/star/uno/RuntimeException.hdl>
+#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
+#include <com/sun/star/uno/RuntimeException.hpp>
+#endif
+#ifndef _COM_SUN_STAR_IO_XINPUTSTREAM_HPP_
+#include <com/sun/star/io/XInputStream.hpp>
#endif
class CRC32
@@ -75,6 +78,8 @@ private:
public:
CRC32();
~CRC32();
+ void SAL_CALL updateStream (::com::sun::star::uno::Reference < ::com::sun::star::io::XInputStream > & xStream)
+ throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL updateByte (sal_Int8 nByte)
throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL updateSegment(const ::com::sun::star::uno::Sequence< sal_Int8 > &b, sal_Int32 off, sal_Int32 len)