summaryrefslogtreecommitdiff
path: root/TAO/tests/Simple/bank/Bank.idl
blob: 96e768b4c7c950f1db2b1a3ca2227e083fb20eed (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
// $Id$
// Bank.idl

module Bank
{
  // = TITLE
  //   @@ Give a brief explain of what this module does.

  interface Account
    {
      // = TITLE
      //   @@ Give a brief explain of what this interface does.

      float balance ();
    };

  interface AccountManager
    {
      // = TITLE
      //   @@ Give a brief explain of what this interface does.

      Account open (in string name);
    };
};