summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Big_Reply/Test.idl
blob: 442d6a746beb1a6c7db1469ed803d9d43ecc59b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//$Id$
module Test
{

  typedef sequence<octet> Octet_Seq;

  interface Big_Reply
    {
      /// Receive a big reply
      Octet_Seq get_big_reply ();

      /// Ping message
      void ping ();

      /// Shudown the remote ORB
      oneway void shutdown ();
    };
};