summaryrefslogtreecommitdiff
path: root/package/inc/CRC32.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/inc/CRC32.hxx')
-rw-r--r--package/inc/CRC32.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/inc/CRC32.hxx b/package/inc/CRC32.hxx
index 2f2af5a9cbf7..b70c621c859a 100644
--- a/package/inc/CRC32.hxx
+++ b/package/inc/CRC32.hxx
@@ -33,14 +33,19 @@ public:
CRC32();
~CRC32();
+ /// @throws css::uno::RuntimeException
sal_Int64 SAL_CALL updateStream (css::uno::Reference < css::io::XInputStream > & xStream)
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
void SAL_CALL updateSegment(const css::uno::Sequence< sal_Int8 > &b, sal_Int32 len)
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
void SAL_CALL update(const css::uno::Sequence< sal_Int8 > &b)
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
sal_Int32 SAL_CALL getValue()
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
void SAL_CALL reset()
throw(css::uno::RuntimeException);
};