summaryrefslogtreecommitdiff
path: root/TAO/tests/Servant_To_Reference_Test/Test.idl
blob: 39548dcbf88d2bc927f142f4616e663cec1cc00d (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$
//

/// Put the interfaces in a module, to avoid global namespace pollution
module Test
{
  /// A very simple interface
  interface One
  {
    /// Return a simple string
    string get_string ();
  };

  interface Two
    {
      string get_string ();
    };

    interface Three
    {
      string get_string ();
    };
};