summaryrefslogtreecommitdiff
path: root/CIAO/ccm/CCM_Enumeration.idl
blob: 00b7416e3a5ee5ba4aafe01c7969f40856b28d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/// Compliant with OMG 06-04-01 Section 10.3.1.2

#if !defined (CCM_ENUMERATION_IDL)
#define CCM_ENUMERATION_IDL

#if !defined (CCM_LW)

#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

#endif /* CCM_ENUMERATION_IDL */