summaryrefslogtreecommitdiff
path: root/TAO/tests/OBV/TC_Alignment/test.idl
blob: 08b91e2c6b154656dd6834980daa3b6960751fdc (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

//=============================================================================
/**
 *  @file    test.idl
 *
 *  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 ();
};