summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Enumeration.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_Enumeration.idl')
-rw-r--r--modules/CIAO/ccm/CCM_Enumeration.idl24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_Enumeration.idl b/modules/CIAO/ccm/CCM_Enumeration.idl
new file mode 100644
index 00000000000..406df4dfeca
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_Enumeration.idl
@@ -0,0 +1,24 @@
+// $Id$
+/// Compliant with OMG 06-04-01 Section 10.3.1.2
+
+#if !defined (CCM_ENUMERATION_IDL)
+#define CCM_ENUMERATION_IDL
+
+#include "ccm/CCM_Object.idl"
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ abstract valuetype Enumeration
+ {
+ boolean has_more_elements();
+ CCMObject next_element();
+ };
+
+ valuetype DefaultEnumeration : Enumeration
+ {
+ private CCMObjectSeq objects;
+ };
+};
+#endif /* CCM_ENUMERATION_IDL */