summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ServantActivator.pidl
blob: f84cffaa3b13724c2fe4365f976dc9e2fd08da90 (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
40
41
42
43
44
45
46
47
48
49
50
/**
 * @file ServantActivator.pidl
 *
 * $Id$
 *
 * @brief Pre-compiled IDL source for the PortableServer module.
 *
 * This file was used to generate the code in
 * ServantActivatorC.{h,inl,cpp}, using the following command:
 *
 * tao_idl.exe \
 *     -o orig -Gp -Gd -Ge 1 -Sc -Sci -GA -I$(TAO_ROOT)
 *          -Wb,export_macro=TAO_PortableServer_Export \
 *          -Wb,export_include="portableserver_export.h" \
 *          -Wb,pre_include="ace/pre.h" \
 *          -Wb,post_include="ace/post.h" \
 *          ServantActivator.pidl
 */

#ifndef _PORTABLESERVER_SERVANT_ACTIVATOR_IDL_
#define _PORTABLESERVER_SERVANT_ACTIVATOR_IDL_

///FUZZ: disable check_for_include/
#include "tao/PortableServer/PS_Forward.pidl"
#include "tao/PortableServer/ServantManager.pidl"
#include "tao/PortableServer/ForwardRequest.pidl"

#pragma prefix "omg.org"

module PortableServer
{
# pragma version PortableServer 2.3

  local interface ServantActivator : ServantManager
  {
#   pragma version ServantActivator 2.3

    Servant incarnate (in ObjectId oid,
                       in POA adapter)
      raises (ForwardRequest);

    void etherealize (in ObjectId oid,
                      in POA adapter,
                      in Servant serv,
                      in boolean cleanup_in_progress,
                      in boolean remaining_activations);
  };
};

#endif // _PORTABLESERVER_SERVANT_ACTIVATOR_IDL_