diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:20:20 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:20:20 +0000 |
commit | 0d081d123b254547ffb4284916d209efea99e958 (patch) | |
tree | fde4bf1c048e3c0e471afb531c072ec1e5b63ad6 /stoc/test | |
parent | 85652dc3739bcf0b89f39b2a34fea2be03b80071 (diff) |
INTEGRATION: CWS unotlc (1.2.16); FILE MERGED
2004/07/13 14:00:01 dbo 1.2.16.2: #i20303#
Issue number:
Submitted by:
Reviewed by:
2004/07/12 13:37:26 dbo 1.2.16.1: #i20303# tests for compatibility type checks
Issue number:
Submitted by:
Reviewed by:
Diffstat (limited to 'stoc/test')
-rw-r--r-- | stoc/test/tdmanager/types.idl | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/stoc/test/tdmanager/types.idl b/stoc/test/tdmanager/types.idl index f3b723e2ec64..d90d478dfc91 100644 --- a/stoc/test/tdmanager/types.idl +++ b/stoc/test/tdmanager/types.idl @@ -2,9 +2,9 @@ * * $RCSfile: types.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: obo $ $Date: 2004-06-04 02:36:16 $ + * last change: $Author: obo $ $Date: 2004-08-12 12:20:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,8 +59,21 @@ * ************************************************************************/ +#include <com/sun/star/uno/XInterface.idl> + module test { module tdmanager { struct Struct<T, U> { U s; }; +published interface XAnother { + void f(); +}; + +service MyService { + [optional] interface XAnother; + [property, optional] boolean b; +}; + +const long CCC = 5; + }; }; |