summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Enumeration.idl
blob: 406df4dfecab22253d4d901411210540923a050d (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
// $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 */