summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3042_Regression/test.idl
blob: 219ef29ed7cba4848258c622a67cefc3156e12f4 (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
// -*- IDL -*-

//=============================================================================
/**
 * @file test.idl
 *
 * $Id$
 *
 * "test" IDL interface for the Codec test.
 *
 * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
 */
//=============================================================================

module Foo
{
  struct Node;

  typedef sequence <Node,5> nodesequence;

  struct Node {
    nodesequence nodes;
  };

};