summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/test.idl
blob: 3d7a3e4231780d7e77c71c304fec47e8e11eb42a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * $Id$
 */

module A {

interface Simple_Server
{
  long get_put_number (out long out_l, in long in_l);
  // Get the number as the return value as well as the out value and
  // also puts the value.  
  
  oneway void shutdown ();
};

};