Update ooo320-m1
[ooovba.git] / idlc / test / singleton.idl
blob2754402ada5cf7ad116a3a5a1383b9e5030c0002
1 #include <interface.idl>
3 module idlc
5 module test
8 exception bla
12 service IdlTest
14 // [property] bla p0;
15 [property] short p1;
16 [optional, property] unsigned short p2;
18 [maybevoid, property] long p3;
19 [bound, property] unsigned long p4;
21 [constrained, property] hyper p5;
22 [transient, property] unsigned hyper p6;
24 [maybeambiguous, property] string p7;
25 [maybedefault, property] type p8;
26 [removable, property] any p9;
28 [readonly, optional, removable, property] ::idlc::test::BaseStruct p10;
30 interface XTestBaseTypes;
31 [optional] interface ::idlc::test::XTestComplexTypes;
34 singleton SingletonTest
36 service IdlTest;