summaryrefslogtreecommitdiff
path: root/cppu/inc/uno/sequence2.h
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2000-12-21 13:35:28 +0000
committerDaniel Boelzle <dbo@openoffice.org>2000-12-21 13:35:28 +0000
commit8c3c9f8b9121f0be8d18e40b1e1548d207e1c47f (patch)
tree04161fec6641c699b6716f67e3c4d1e2df1ce8d4 /cppu/inc/uno/sequence2.h
parente91d5248ad4431a6199aab9a29e7b53aad262f6b (diff)
added throw () clauses
Diffstat (limited to 'cppu/inc/uno/sequence2.h')
-rw-r--r--cppu/inc/uno/sequence2.h28
1 files changed, 18 insertions, 10 deletions
diff --git a/cppu/inc/uno/sequence2.h b/cppu/inc/uno/sequence2.h
index 828db39c9106..eeec2cca7037 100644
--- a/cppu/inc/uno/sequence2.h
+++ b/cppu/inc/uno/sequence2.h
@@ -2,9 +2,9 @@
*
* $RCSfile: sequence2.h,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:25:52 $
+ * last change: $Author: dbo $ $Date: 2000-12-21 14:35:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -86,7 +86,8 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_assign(
uno_Sequence ** ppDest,
uno_Sequence * pSource,
typelib_TypeDescription * pTypeDescr,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
/** Assign a sequence.
<br>
@param ppDest destinstaion sequence
@@ -98,7 +99,8 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_assign(
uno_Sequence ** ppDest,
uno_Sequence * pSource,
typelib_TypeDescriptionReference * pType,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
/** Constructs a new sequence with given elements.
<br>
@@ -112,7 +114,8 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_construct(
uno_Sequence ** ppSequence,
typelib_TypeDescription * pTypeDescr,
void * pElements, sal_Int32 len,
- uno_AcquireFunc acquire );
+ uno_AcquireFunc acquire )
+ SAL_THROW ();
/** Constructs a new sequence with given elements.
<br>
@param ppSequence <b>out</b> parameter sequence
@@ -125,7 +128,8 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_construct(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pType,
void * pElements, sal_Int32 len,
- uno_AcquireFunc acquire );
+ uno_AcquireFunc acquire )
+ SAL_THROW ();
/** Assures that the reference count of the given sequence is one.
Otherwise a new copy of the sequence is created with a reference count of one.
@@ -139,7 +143,8 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_reference2One(
uno_Sequence ** ppSequence,
typelib_TypeDescription * pTypeDescr,
uno_AcquireFunc acquire,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
/** Assures that the reference count of the given sequence is one.
Otherwise a new copy of the sequence is created with a reference count of one.
<br>
@@ -152,7 +157,8 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_reference2One(
uno_Sequence ** ppSequence,
typelib_TypeDescriptionReference * pType,
uno_AcquireFunc acquire,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
/** Reallocates length of a sequence. This truncates a sequence or enlarges it
default constructing appended elements.
@@ -168,7 +174,8 @@ SAL_DLLEXPORT void SAL_CALL uno_sequence_realloc(
typelib_TypeDescription * pTypeDescr,
sal_Int32 nSize,
uno_AcquireFunc acquire,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
/** Reallocates length of a sequence. This truncates a sequence or enlarges it
default constructing appended elements.
<br>
@@ -183,7 +190,8 @@ SAL_DLLEXPORT void SAL_CALL uno_type_sequence_realloc(
typelib_TypeDescriptionReference * pType,
sal_Int32 nSize,
uno_AcquireFunc acquire,
- uno_ReleaseFunc release );
+ uno_ReleaseFunc release )
+ SAL_THROW ();
#ifdef __cplusplus
}