blob: 30e995d2135bd805a77f20826be853d1d6689d02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file Test.idl
*
*/
module Test
{
typedef string<10> MyString;
typedef MyString OtherString;
interface Foo
{
void op1( in MyString s );
void op2( in OtherString s );
};
};
|