summaryrefslogtreecommitdiff
path: root/idlc/test/service.idl
blob: 121d5f5402fe1b2753bff4aed8b38c973cdc6e2f (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
#include <interface.idl>

module idlc
{
module test
{

exception bla
{
};

service IdlTest
{
//	[property] bla p0;
    [property] short p1;
    [optional, property] unsigned short p2;
    
    [maybevoid, property] long p3;
    [bound, property] unsigned long p4;

    [constrained, property] hyper p5;
    [transient, property] unsigned hyper p6;

    [maybeambiguous, property] string p7;
    [maybedefault, property] type p8;
    [removable, property] any p9;

    [readonly, optional, removable, property] ::idlc::test::BaseStruct p10;

    interface XTestBaseTypes;
    [optional] interface ::idlc::test::XTestComplexTypes;
};

service BetterIdlTest
{
    service IdlTest;
    
    interface XTestBaseTypes;
    [optional] interface ::idlc::test::XTestComplexTypes;
};

};
};