diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-03 14:09:51 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-03 14:09:51 +0000 |
commit | 08f9efa054b50c7b22f26cef891bf7bd79dd6f3a (patch) | |
tree | 0f7f312c73c949d7205772b986a8cf5154fe491b /idlc/source/attributeexceptions.hxx | |
parent | af8aa590b7c65f81fe1bec69568fd623a095d5a7 (diff) |
INTEGRATION: CWS sb18 (1.2.4); FILE MERGED
2004/05/18 09:09:10 sb 1.2.4.1: #i21150# Handle documentation of interface attribute getters and setters.
Diffstat (limited to 'idlc/source/attributeexceptions.hxx')
-rw-r--r-- | idlc/source/attributeexceptions.hxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/idlc/source/attributeexceptions.hxx b/idlc/source/attributeexceptions.hxx index a97de91e300d..3a8126d5ca55 100644 --- a/idlc/source/attributeexceptions.hxx +++ b/idlc/source/attributeexceptions.hxx @@ -2,9 +2,9 @@ * * $RCSfile: attributeexceptions.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-03-30 16:46:31 $ + * last change: $Author: obo $ $Date: 2004-06-03 15:09:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,9 +62,15 @@ #ifndef INCLUDED_idlc_source_attributeexceptions_hxx #define INCLUDED_idlc_source_attributeexceptions_hxx +#include "rtl/ustring.hxx" + struct AttributeExceptions { - DeclList * getExceptions; - DeclList * setExceptions; + struct Part { + rtl::OUString const * documentation; + DeclList const * exceptions; + }; + Part get; + Part set; }; #endif |