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 | 659ff3f2b477f03468cbb182e912182e543498dd (patch) | |
tree | 231c73bbc5593a28f7a229c1ea8c5efcf39d562c | |
parent | a2cbec12f42651c6e58302a6fb559dcc4b552c10 (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.
-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 a97de91e3..3a8126d5c 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 |