diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-15 08:14:40 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-15 08:14:40 +0000 |
commit | 21c3f92bee60687b4e231651e9e6ad76cffe7536 (patch) | |
tree | 98337f32cbb39e1f2754ff715b8b2373f47f8904 /codemaker/source | |
parent | 52206d14cfc8d1bfcf1a42ef4a9285b3c76044d3 (diff) |
INTEGRATION: CWS jsc3 (1.3.16); FILE MERGED
2006/02/17 16:00:08 jsc 1.3.16.2: #i56247# refactoring and cosmetics
2006/01/20 13:02:22 jsc 1.3.16.1: #i56247# unify include guards
Diffstat (limited to 'codemaker/source')
-rw-r--r-- | codemaker/source/cppumaker/dumputils.hxx | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/codemaker/source/cppumaker/dumputils.hxx b/codemaker/source/cppumaker/dumputils.hxx index 9a02b6d285b4..99547d79aeda 100644 --- a/codemaker/source/cppumaker/dumputils.hxx +++ b/codemaker/source/cppumaker/dumputils.hxx @@ -4,9 +4,9 @@ * * $RCSfile: dumputils.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 02:13:09 $ + * last change: $Author: vg $ $Date: 2006-03-15 09:14:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -33,22 +33,26 @@ * ************************************************************************/ -#ifndef INCLUDED_codemaker_source_cppumaker_dumputils_hxx -#define INCLUDED_codemaker_source_cppumaker_dumputils_hxx +#ifndef INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX +#define INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX \ + INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX namespace rtl { class OString; } class FileStream; +class TypeManager; namespace codemaker { namespace cppumaker { bool dumpNamespaceOpen( - FileStream & out, rtl::OString const & registryType, bool fullModuleType); + FileStream & out, TypeManager const & manager, + rtl::OString const & registryType, bool fullModuleType); bool dumpNamespaceClose( FileStream & out, rtl::OString const & registryType, bool fullModuleType); -void dumpTypeIdentifier(FileStream & out, rtl::OString const & registryType); +void dumpTypeIdentifier(FileStream & out, TypeManager const & manager, + rtl::OString const & registryType); } } -#endif +#endif // INCLUDED_CODEMAKER_SOURCE_CPPUMAKER_DUMPUTILS_HXX |