summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/DeadMemberDetection_Inf_Ctrl/Test.idl
blob: 99a9521e595e455d733f1dd51adeaaded8ad38b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// $Id$

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

    /// Return a simple string
    oneway void exit ();

  };
};