summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup_Simple_DS.idl
blob: d6ccd6619c913eab9a5461935e52e47b54a930c1 (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
29
30
31
32
33
34
35
36
37
38
39
// -*- IDL -*-

//=============================================================================
/**
 *  @file    PortableGroup_Simple_DS.idl
 *
 *  The aim of this file is to provide a seperation between the actual
 *  PortableGroup interface and some of the data structures defined in
 *  this module. This would be apparent if you look at
 *  FT_CORBA_ORB.idl. FT_CORBA_ORB.idl can get away by just including
 *  this file and the generated code from this instead of linking in
 *  PortableGroup and the likes.
 */
//=============================================================================

#ifndef _PORTABLEGROUP_SIMPLE_DS_IDL_
#define _PORTABLEGROUP_SIMPLE_DS_IDL_

#include "tao/GIOP.pidl"

module PortableGroup
{
  typeprefix PortableGroup "omg.org";

  // Specification for Interoperable Object Group References
  typedef string GroupDomainId;
  typedef unsigned long long ObjectGroupId;
  typedef unsigned long ObjectGroupRefVersion;

  struct TagGroupTaggedComponent
  { // tag = TAG_GROUP;
    GIOP::Version component_version;
    GroupDomainId group_domain_id;
    ObjectGroupId object_group_id;
    ObjectGroupRefVersion object_group_ref_version;
  };
};

#endif /*_PORTABLEGROUP_SIMPLE_DS_IDL_*/