summaryrefslogtreecommitdiff
path: root/trunk/CIAO/ciao/extension/CCM_StubContainerInterceptorRegistration.idl
blob: 61ae62f51fa36082a89dcdcd7ae248e370869120 (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$

#if !defined (CCM_STUBCONTAINERINTERCEPTORREGISTRATION_IDL)
#define CCM_STUBCONTAINERINTERCEPTORREGISTRATION_IDL

#include "ciao/CCM_Cookie.idl"
#include "ciao/CCM_InvalidRegistration.idl"

module Components
{
  module ContainerPortableInterceptor
  {
    local interface StubContainerInterceptor;

    local interface StubContainerInterceptorRegistration
    {
      Components::Cookie register_stub_interceptor (in StubContainerInterceptor ci);
      StubContainerInterceptor unregister_stub_interceptor (in Components::Cookie cookie)
        raises(InvalidRegistration);
    };
  };
};

#endif /* CCM_STUBCONTAINERINTERCEPTORREGISTRATION_IDL */