summaryrefslogtreecommitdiff
path: root/include/typelib
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-31 10:15:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-31 10:15:47 +0100
commit9e77c2fb7cadfd477fb1b971b011d43f30781660 (patch)
tree7a7d70822e2628a1e6383a15eeedb8fea5309123 /include/typelib
parent11235e86497df47ff3acc61c1cab9fff0b91949e (diff)
Remove UNOIDL "array" and "union" vaporware remnants
...and deprecate what cannot be removed for compatibility. Change-Id: I1ea335af775b867b468b8285113631167729a92a
Diffstat (limited to 'include/typelib')
-rw-r--r--include/typelib/typeclass.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/typelib/typeclass.h b/include/typelib/typeclass.h
index 434094fe3d8d..1c6b0d64458e 100644
--- a/include/typelib/typeclass.h
+++ b/include/typelib/typeclass.h
@@ -61,13 +61,19 @@ typedef enum _typelib_TypeClass
typelib_TypeClass_TYPEDEF = 16,
/** type class of struct */
typelib_TypeClass_STRUCT = 17,
- /** type class of union (not implemented) */
+ /** Deprecated, UNOIDL does not have a union concept.
+
+ @deprecated
+ */
typelib_TypeClass_UNION = 18,
/** type class of exception */
typelib_TypeClass_EXCEPTION = 19,
/** type class of sequence */
typelib_TypeClass_SEQUENCE = 20,
- /** type class of array (not implemented) */
+ /** Deprecated, UNOIDL does not have an array concept.
+
+ @deprecated
+ */
typelib_TypeClass_ARRAY = 21,
/** type class of interface */
typelib_TypeClass_INTERFACE = 22,