summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Home.idl
blob: 697fccf72c48657b5a504e68e43f3222527e3084 (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
// $Id$
/// Compliant with OMG 06-04-01 Section 6.7.6

#if !defined (CCM_HOME_IDL)
#define CCM_HOME_IDL

#include "tao/IFR_Client/IFR_Base.pidl"
#include "ccm/CCM_Exceptions.idl"

module Components
{
  typeprefix Components "omg.org";

  exception DuplicateKeyValue {};
  exception InvalidKey {};
  exception UnknownKeyValue {};

  interface CCMObject;

  interface CCMHome
  {
    CORBA::IRObject get_component_def ();
    CORBA::IRObject get_home_def ();
    void remove_component (in CCMObject comp)
      raises (RemoveFailure);
  };
};

#endif /* CCM_HOME_IDL */