summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Security/Secure_Invocation/Foo.idl
blob: ba47c809ad63306f8f92eb450b1ae3b7da3d6b43 (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
// -*- IDL -*-

//=============================================================================
/**
 * @file Foo.idl
 *
 * $Id$
 *
 * IDL for the Secure_Invocation test.
 *
 * @author Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

module Foo
{
  interface Bar
  {
    /// Test method.
    void baz ();

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

};