diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-15 08:10:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-15 08:10:41 +0000 |
commit | 4acd9b555eb26d915b94119b2d168d8179efc000 (patch) | |
tree | c3c32df48ebef508ebb851d887fb0a2ff6fb777a /codemaker | |
parent | bf918d7c13d521089bda63c072d3002c05eb6f24 (diff) |
INTEGRATION: CWS jsc3 (1.10.14); FILE MERGED
2006/01/20 13:00:06 jsc 1.10.14.1: #i56247# unify include guards
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/inc/codemaker/global.hxx | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/codemaker/inc/codemaker/global.hxx b/codemaker/inc/codemaker/global.hxx index 276703e6aea7..f104f32c46c7 100644 --- a/codemaker/inc/codemaker/global.hxx +++ b/codemaker/inc/codemaker/global.hxx @@ -4,9 +4,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2005-09-08 02:06:34 $ + * last change: $Author: vg $ $Date: 2006-03-15 09:10:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -33,8 +33,8 @@ * ************************************************************************/ -#ifndef _CODEMAKER_GLOBAL_HXX_ -#define _CODEMAKER_GLOBAL_HXX_ +#ifndef INCLUDED_CODEMAKER_GLOBAL_HXX +#define INCLUDED_CODEMAKER_GLOBAL_HXX #include <list> #include <vector> @@ -42,9 +42,15 @@ #include <stdio.h> +#ifndef _OSL_FILE_HXX_ #include "osl/file.hxx" +#endif +#ifndef _RTL_USTRING_HXX_ #include "rtl/ustring.hxx" +#endif +#ifndef _RTL_STRBUF_HXX_ #include "rtl/strbuf.hxx" +#endif struct EqualString { @@ -155,5 +161,5 @@ public: }; -#endif // _CODEMAKER_GLOBAL_HXX_ +#endif // INCLUDED_CODEMAKER_GLOBAL_HXX |