summaryrefslogtreecommitdiff
path: root/TAO/tests/Two_Objects/Two_Objects.idl
blob: 4ed651347a0cac86f2e5ec1273f1c9b2c6062f23 (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
25
26
27
28

module Two_Objects_Test
{

  typedef sequence<octet> Octet_Seq;

  /// A very simple interface
  interface First
  {
    oneway void oneway_method ();
  };

  interface Second
  {
    /// Return a simple string
    Octet_Seq twoway_method ();

    /// A method to shutdown the ORB
    oneway void shutdown ();
  };

  /// Factory interface to create first and second objects
  interface Object_Factory
  {
      First  create_first ();
      Second create_second ();
  };
};