diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-01-31 14:26:48 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-01-31 14:26:48 +0000 |
commit | 9194857045ddb397dee8f9275ef29c4c6c154b26 (patch) | |
tree | 4e4dfab7a63c05325f37740f7087624ccddb9181 /codemaker | |
parent | 394c63b54a380386313147dfbe5d874d9e7ef37f (diff) |
INTEGRATION: CWS sdksample (1.8.14); FILE MERGED
2004/07/07 09:52:49 jsc 1.8.14.1: #i30954# adjusted to genrate dependent types fro cppu
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/inc/codemaker/global.hxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/codemaker/inc/codemaker/global.hxx b/codemaker/inc/codemaker/global.hxx index 5e0dbfc2e9a2..e1cc61ba1bea 100644 --- a/codemaker/inc/codemaker/global.hxx +++ b/codemaker/inc/codemaker/global.hxx @@ -2,9 +2,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2004-06-04 03:09:10 $ + * last change: $Author: rt $ $Date: 2005-01-31 15:26:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -168,6 +168,18 @@ sal_Bool removeTypeFile(const ::rtl::OString& fileName); ::rtl::OUString convertToFileUrl(const ::rtl::OString& fileName); +//************************************************************************* +// Global exception to signal problems when a type cannot be dumped +//************************************************************************* +class CannotDumpException +{ +public: + CannotDumpException(const ::rtl::OString& msg) + : m_message(msg) {} + + ::rtl::OString m_message; +}; + #endif // _CODEMAKER_GLOBAL_HXX_ |