summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/OBV/TC_Alignment/test.idl
blob: a48a747f219a7071dbd2e3d97388a47369052414 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/OBV/TC_Alignment
//
// = FILENAME
//    test.idl
//
// = DESCRIPTION
//    IDL description of the TypeCode alignment Test interface for valuetypes
//
// = AUTHOR
//    Jeff Parsons <j.parsons@vanderbilt.edu>
//
// ============================================================================

module obvmod
{
  valuetype tcOffset1
  {
    public long mem;
  };

  valuetype tcOffset003
  {
    public long mem;
  };

  valuetype tcOffset00005
  {
    public long mem;
  };

  valuetype tcOffset0000007
  {
    public long mem;
  };
};

interface test
{
  any get_value (in long type);
  oneway void shutdown ();
};