summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Server_Leaks/Test.idl
blob: 3f71918cab12e1aa2c6bb4d8dd00dddcec657d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// $Id$
//

module Test
{
  /// An interface to communicate and shutdown a process
  interface Ping_Service
  {
    /// Just a void function contact the server
    void ping ();

    /// Shutdown the server
    oneway void shutdown ();
  };
};