summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocated_Forwarding/test.idl
blob: b141b4afb3212dced2c99690694ec5aca694fd92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- IDL -*-
//$Id$

#include "tao/PortableInterceptor.pidl"
#include "tao/PI_Server/PI_Server_include.pidl"

module Collocated_ForwardRequestTest
{
  interface test
  {
    short collocated_call ();
  };

  local interface ServerRequestInterceptor
    : PortableInterceptor::ServerRequestInterceptor
  {
    /// Set the references to which requests will be forwarded.
    void forward (in Object to);
  };
};