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

module Test
{
  typedef long FooType;
  struct FooStruct  {
    FooType Foo1;
    FooType Foo2;
  };

  exception Demarshaling_From_Any_Failed {};
  exception Repeated_Type_In_Any_Test_Failed {};

  /// Simple test interface.
  interface Hello
  {
    /// Return the any provided as the "in" argument.
    any get_any (in any the_any);

    /// Shutdown the server ORB.
    oneway void shutdown ();
  };

};