summaryrefslogtreecommitdiff
path: root/TAO/examples/ior_corbaloc/corbaloc.idl
blob: 71a220ea3ae3460edb7ee4b077f9a8a0a2dfeda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module corbaloc
{

  interface Status
  {
    // = TITLE
    //     A simple interface to check the status of
    //     connection between the client and the server.
    //
    // = DESCRIPTION
    //     Prints out the status.

    boolean print_status ();
    // Return <true == 0> if the server received the
    // request from the client.

  };
};