#87233# new
This commit is contained in:
parent
317490e1cc
commit
465b869e78
1 changed files with 41 additions and 0 deletions
41
idlc/test/singleton.idl
Normal file
41
idlc/test/singleton.idl
Normal file
|
@ -0,0 +1,41 @@
|
|||
#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;
|
||||
};
|
||||
|
||||
singleton SingletonTest
|
||||
{
|
||||
service IdlTest;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in a new issue