blob: eeacd4899068fa55f7467dbec31ddea7a0054aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: f; c-basic-offset: 2 -*- */
/*
*/
#include "tao/PortableServer/ForwardRequest.pidl"
module Forward
{
interface Test
{
string do_forward (in string text);
oneway void shutdown ();
};
};
|