blob: 40304a25f84816e68e5a82d86ee8f4707e61f92f (
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
|
/**
* @file AdapterActivator.pidl
*
* @brief PIDL source for the PortableServer module.
*/
#ifndef _PORTABLESERVER_ADAPTER_ACTIVATOR_IDL_
#define _PORTABLESERVER_ADAPTER_ACTIVATOR_IDL_
///FUZZ: disable check_for_include/
#include "tao/PortableServer/PS_Forward.pidl"
#pragma prefix "omg.org"
#if !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO) && !defined (TAO_HAS_MINIMUM_POA)
module PortableServer
{
/// AdapterActivator interface.
local interface AdapterActivator
{
# pragma version AdapterActivator 2.3
boolean unknown_adapter (in POA parent,
in string name);
};
};
#endif
#endif // _PORTABLESERVER_ADAPTER_ACTIVATOR_IDL_
|