simplify include guards

Change-Id: Id4210229b20a1d54b680ff1a2ccbcdd3684ecf5f
This commit is contained in:
Thomas Arnhold
2012-07-14 05:37:24 +02:00
parent 5a7e8389f0
commit 1340890ccd
144 changed files with 155 additions and 173 deletions

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if !defined INCLUDED_ACCESSIBILITY_TEXTWINDOWACCESSIBILITY_HXX #ifndef INCLUDED_ACCESSIBILITY_TEXTWINDOWACCESSIBILITY_HXX
#define INCLUDED_ACCESSIBILITY_TEXTWINDOWACCESSIBILITY_HXX #define INCLUDED_ACCESSIBILITY_TEXTWINDOWACCESSIBILITY_HXX
#include <toolkit/awt/vclxaccessiblecomponent.hxx> #include <toolkit/awt/vclxaccessiblecomponent.hxx>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_JNI_BASE_H #ifndef INCLUDED_JNI_BASE_H
#define INCLUDED_JNI_BASE_H #define INCLUDED_JNI_BASE_H
#if defined (__SUNPRO_CC) || defined (__SUNPRO_C) #if defined (__SUNPRO_CC) || defined (__SUNPRO_C)

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_JNI_BRIDGE_H #ifndef INCLUDED_JNI_BRIDGE_H
#define INCLUDED_JNI_BRIDGE_H #define INCLUDED_JNI_BRIDGE_H
#include "jni_base.h" #include "jni_base.h"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_JNI_HELPER_H #ifndef INCLUDED_JNI_HELPER_H
#define INCLUDED_JNI_HELPER_H #define INCLUDED_JNI_HELPER_H
#include "jni_base.h" #include "jni_base.h"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_JNI_INFO_H #ifndef INCLUDED_JNI_INFO_H
#define INCLUDED_JNI_INFO_H #define INCLUDED_JNI_INFO_H
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>

View File

@@ -23,7 +23,7 @@
#include "ServiceMacros.hxx" #include "ServiceMacros.hxx"
#include "DiagramHelper.hxx" #include "DiagramHelper.hxx"
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13) #ifndef INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13 #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_13
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 13 #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 13
#include "comphelper/implbase_var.hxx" #include "comphelper/implbase_var.hxx"

View File

@@ -65,7 +65,7 @@
#include <com/sun/star/embed/XStorage.hpp> #include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/datatransfer/XTransferable.hpp> #include <com/sun/star/datatransfer/XTransferable.hpp>
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_22) #ifndef INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_22
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_22 #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_22
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 22 #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 22
#include "comphelper/implbase_var.hxx" #include "comphelper/implbase_var.hxx"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_CLI_BASE_H #ifndef INCLUDED_CLI_BASE_H
#define INCLUDED_CLI_BASE_H #define INCLUDED_CLI_BASE_H
#pragma unmanaged #pragma unmanaged

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_CLI_BRIDGE_H #ifndef INCLUDED_CLI_BRIDGE_H
#define INCLUDED_CLI_BRIDGE_H #define INCLUDED_CLI_BRIDGE_H
#include <vcclr.h> #include <vcclr.h>
#include "osl/interlck.h" #include "osl/interlck.h"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_CLI_ENVIRONMENT_H #ifndef INCLUDED_CLI_ENVIRONMENT_H
#define INCLUDED_CLI_ENVIRONMENT_H #define INCLUDED_CLI_ENVIRONMENT_H
#include "cli_base.h" #include "cli_base.h"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(INCLUDED_COMPHELPER_ANYTOSTRING_HXX) #ifndef INCLUDED_COMPHELPER_ANYTOSTRING_HXX
#define INCLUDED_COMPHELPER_ANYTOSTRING_HXX #define INCLUDED_COMPHELPER_ANYTOSTRING_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -38,7 +38,7 @@
include guards. Please use the following external include guard rule include guards. Please use the following external include guard rule
where <N> is the number of interface types: where <N> is the number of interface types:
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_<N>) #ifndef INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_<N>
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_<N> #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_<N>
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER <N> #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER <N>
#include "comphelper/implbase_var.hxx" #include "comphelper/implbase_var.hxx"
@@ -53,7 +53,7 @@
The default is a maximum of 6 arguments. The default is a maximum of 6 arguments.
*/ */
#if ! defined(COMPHELPER_IMPLBASE_INTERFACE_NUMBER) #ifndef COMPHELPER_IMPLBASE_INTERFACE_NUMBER
#error "you have to define COMPHELPER_IMPLBASE_INTERFACE_NUMBER prior to including comphelper/implbase_var.hxx!" #error "you have to define COMPHELPER_IMPLBASE_INTERFACE_NUMBER prior to including comphelper/implbase_var.hxx!"
#endif // ! defined(COMPHELPER_IMPLBASE_INTERFACE_NUMBER) #endif // ! defined(COMPHELPER_IMPLBASE_INTERFACE_NUMBER)
@@ -61,19 +61,13 @@
#error "include proper header file: cppuhelper/implbase<N>.hxx or cppuhelper/compbase<N>.hxx!" #error "include proper header file: cppuhelper/implbase<N>.hxx or cppuhelper/compbase<N>.hxx!"
#endif #endif
#if ! defined(COMPHELPER_IMPLBASE_MAX_CTOR_ARGS) #ifndef COMPHELPER_IMPLBASE_MAX_CTOR_ARGS
#define COMPHELPER_IMPLBASE_MAX_CTOR_ARGS 6 // default #define COMPHELPER_IMPLBASE_MAX_CTOR_ARGS 6 // default
#endif #endif
#if ! defined(_CPPUHELPER_IMPLBASE_EX_HXX_)
#include "cppuhelper/implbase_ex.hxx" #include "cppuhelper/implbase_ex.hxx"
#endif
#if ! defined(INCLUDED_RTL_INSTANCE_HXX)
#include "rtl/instance.hxx" #include "rtl/instance.hxx"
#endif
#if ! defined(_CPPUHELPER_COMPBASE_EX_HXX_)
#include "cppuhelper/compbase_ex.hxx" #include "cppuhelper/compbase_ex.hxx"
#endif
#include "boost/preprocessor/cat.hpp" #include "boost/preprocessor/cat.hpp"
#include "boost/preprocessor/repetition.hpp" #include "boost/preprocessor/repetition.hpp"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(INCLUDED_COMPHELPER_MAKE_SHARED_FROM_UNO_HXX) #ifndef INCLUDED_COMPHELPER_MAKE_SHARED_FROM_UNO_HXX
#define INCLUDED_COMPHELPER_MAKE_SHARED_FROM_UNO_HXX #define INCLUDED_COMPHELPER_MAKE_SHARED_FROM_UNO_HXX
#include "boost/shared_ptr.hpp" #include "boost/shared_ptr.hpp"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(COMPHELPER_MAKESEQUENCE_HXX_INCLUDED) #ifndef COMPHELPER_MAKESEQUENCE_HXX_INCLUDED
#define COMPHELPER_MAKESEQUENCE_HXX_INCLUDED #define COMPHELPER_MAKESEQUENCE_HXX_INCLUDED
#include "com/sun/star/uno/Sequence.hxx" #include "com/sun/star/uno/Sequence.hxx"
@@ -62,7 +62,7 @@ inline ::com::sun::star::uno::Sequence<T> makeSequence( \
return seq; \ return seq; \
} }
#if ! defined(COMPHELPER_MAKESEQUENCE_MAX_ARGS) #ifndef COMPHELPER_MAKESEQUENCE_MAX_ARGS
#define COMPHELPER_MAKESEQUENCE_MAX_ARGS 12 #define COMPHELPER_MAKESEQUENCE_MAX_ARGS 12
#endif #endif

View File

@@ -16,12 +16,10 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(INCLUDED_COMPHELPER_OPTIONAL_HXX) #ifndef INCLUDED_COMPHELPER_OPTIONAL_HXX
#define INCLUDED_COMPHELPER_OPTIONAL_HXX #define INCLUDED_COMPHELPER_OPTIONAL_HXX
#if ! defined(_COM_SUN_STAR_BEANS_OPTIONAL_HPP_)
#include "com/sun/star/beans/Optional.hpp" #include "com/sun/star/beans/Optional.hpp"
#endif
#include "boost/optional.hpp" #include "boost/optional.hpp"
namespace comphelper { namespace comphelper {

View File

@@ -17,12 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(INCLUDED_COMPHELPER_SCOPEGUARD_HXX) #ifndef INCLUDED_COMPHELPER_SCOPEGUARD_HXX
#define INCLUDED_COMPHELPER_SCOPEGUARD_HXX #define INCLUDED_COMPHELPER_SCOPEGUARD_HXX
#if ! defined(INCLUDED_COMPHELPERDLLAPI_H)
#include "comphelper/comphelperdllapi.h" #include "comphelper/comphelperdllapi.h"
#endif
#include "boost/function.hpp" #include "boost/function.hpp"
#include "boost/noncopyable.hpp" #include "boost/noncopyable.hpp"
#include "boost/bind.hpp" #include "boost/bind.hpp"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(COMPHELPER_SERVICEDECL_HXX_INCLUDED) #ifndef COMPHELPER_SERVICEDECL_HXX_INCLUDED
#define COMPHELPER_SERVICEDECL_HXX_INCLUDED #define COMPHELPER_SERVICEDECL_HXX_INCLUDED
#include <comphelper/comphelperdllapi.h> #include <comphelper/comphelperdllapi.h>
@@ -335,7 +335,7 @@ inline void * component_getFactoryHelper( \
return pRet; \ return pRet; \
} }
#if ! defined(COMPHELPER_SERVICEDECL_COMPONENT_HELPER_MAX_ARGS) #ifndef COMPHELPER_SERVICEDECL_COMPONENT_HELPER_MAX_ARGS
#define COMPHELPER_SERVICEDECL_COMPONENT_HELPER_MAX_ARGS 8 #define COMPHELPER_SERVICEDECL_COMPONENT_HELPER_MAX_ARGS 8
#endif #endif

View File

@@ -17,16 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined(COMPHELPER_UNWRAPARGS_HXX_INCLUDED) #ifndef COMPHELPER_UNWRAPARGS_HXX_INCLUDED
#define COMPHELPER_UNWRAPARGS_HXX_INCLUDED #define COMPHELPER_UNWRAPARGS_HXX_INCLUDED
#if ! defined(_RTL_USTRBUF_HXX_)
#include "rtl/ustrbuf.hxx" #include "rtl/ustrbuf.hxx"
#endif
#include "com/sun/star/uno/Sequence.hxx" #include "com/sun/star/uno/Sequence.hxx"
#if ! defined(_COM_SUN_STAR_LANG_ILLEGALARGUMENTEXCEPTION_HPP_)
#include "com/sun/star/lang/IllegalArgumentException.hpp" #include "com/sun/star/lang/IllegalArgumentException.hpp"
#endif
#include "boost/optional.hpp" #include "boost/optional.hpp"
#include "boost/preprocessor/cat.hpp" #include "boost/preprocessor/cat.hpp"
#include "boost/preprocessor/repetition.hpp" #include "boost/preprocessor/repetition.hpp"
@@ -125,7 +121,7 @@ inline void unwrapArgs( \
BOOST_PP_REPEAT(BOOST_PP_ADD(n_, 1), COMPHELPER_UNWRAPARGS_extract, ~) \ BOOST_PP_REPEAT(BOOST_PP_ADD(n_, 1), COMPHELPER_UNWRAPARGS_extract, ~) \
} }
#if ! defined(COMPHELPER_UNWRAPARGS_MAX_ARGS) #ifndef COMPHELPER_UNWRAPARGS_MAX_ARGS
#define COMPHELPER_UNWRAPARGS_MAX_ARGS 12 #define COMPHELPER_UNWRAPARGS_MAX_ARGS 12
#endif #endif

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_UNO_DISPATCHER_HXX #ifndef INCLUDED_UNO_DISPATCHER_HXX
#define INCLUDED_UNO_DISPATCHER_HXX #define INCLUDED_UNO_DISPATCHER_HXX
#include "uno/dispatcher.h" #include "uno/dispatcher.h"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if !defined INCLUDED_CPPUHELPER_UNOURL_HXX #ifndef INCLUDED_CPPUHELPER_UNOURL_HXX
#define INCLUDED_CPPUHELPER_UNOURL_HXX #define INCLUDED_CPPUHELPER_UNOURL_HXX
#include <memory> #include <memory>

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_cppuhelper_detail_XExceptionThrower_idl #ifndef INCLUDED_cppuhelper_detail_XExceptionThrower_idl
#define INCLUDED_cppuhelper_detail_XExceptionThrower_idl #define INCLUDED_cppuhelper_detail_XExceptionThrower_idl
#include <com/sun/star/uno/Exception.idl> #include <com/sun/star/uno/Exception.idl>

View File

@@ -38,7 +38,7 @@
#include <com/sun/star/sdb/tools/XConnectionTools.hpp> #include <com/sun/star/sdb/tools/XConnectionTools.hpp>
#include <com/sun/star/sdb/application/XTableUIProvider.hpp> #include <com/sun/star/sdb/application/XTableUIProvider.hpp>
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_14) #ifndef INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_14
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_14 #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_14
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 14 #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 14
#include <comphelper/implbase_var.hxx> #include <comphelper/implbase_var.hxx>

View File

@@ -50,7 +50,7 @@
#include <com/sun/star/document/XDocumentEventBroadcaster.hpp> #include <com/sun/star/document/XDocumentEventBroadcaster.hpp>
#include <com/sun/star/document/XDocumentRecovery.hpp> #include <com/sun/star/document/XDocumentRecovery.hpp>
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_17) #ifndef INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_17
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_17 #define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_17
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 17 #define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 17
#include <comphelper/implbase_var.hxx> #include <comphelper/implbase_var.hxx>

View File

@@ -25,7 +25,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DEPLOYMENT_HRC #ifndef INCLUDED_DEPLOYMENT_HRC
#define INCLUDED_DEPLOYMENT_HRC #define INCLUDED_DEPLOYMENT_HRC
#define MASKCOLOR MaskColor = \ #define MASKCOLOR MaskColor = \

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_GUI_H #ifndef INCLUDED_DP_GUI_H
#define INCLUDED_DP_GUI_H #define INCLUDED_DP_GUI_H
#include "dp_gui_updatedata.hxx" #include "dp_gui_updatedata.hxx"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_GUI_HRC #ifndef INCLUDED_DP_GUI_HRC
#define INCLUDED_DP_GUI_HRC #define INCLUDED_DP_GUI_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if !defined INCLUDED_DP_GUI_SHARED_HXX #ifndef INCLUDED_DP_GUI_SHARED_HXX
#define INCLUDED_DP_GUI_SHARED_HXX #define INCLUDED_DP_GUI_SHARED_HXX
#include "rtl/instance.hxx" #include "rtl/instance.hxx"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_GUI_UPDATEDATA_HXX #ifndef INCLUDED_DP_GUI_UPDATEDATA_HXX
#define INCLUDED_DP_GUI_UPDATEDATA_HXX #define INCLUDED_DP_GUI_UPDATEDATA_HXX
#include "sal/config.h" #include "sal/config.h"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_INTERACT_H #ifndef INCLUDED_DP_INTERACT_H
#define INCLUDED_DP_INTERACT_H #define INCLUDED_DP_INTERACT_H
#include "rtl/ref.hxx" #include "rtl/ref.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_MISC_H #ifndef INCLUDED_DP_MISC_H
#define INCLUDED_DP_MISC_H #define INCLUDED_DP_MISC_H
#include "rtl/ustrbuf.hxx" #include "rtl/ustrbuf.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_PERSMAP_H #ifndef INCLUDED_DP_PERSMAP_H
#define INCLUDED_DP_PERSMAP_H #define INCLUDED_DP_PERSMAP_H
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_PLATFORM_HXX #ifndef INCLUDED_DP_PLATFORM_HXX
#define INCLUDED_DP_PLATFORM_HXX #define INCLUDED_DP_PLATFORM_HXX

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_RESOURCE_H #ifndef INCLUDED_DP_RESOURCE_H
#define INCLUDED_DP_RESOURCE_H #define INCLUDED_DP_RESOURCE_H
#include "tools/string.hxx" #include "tools/string.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_UCB_H #ifndef INCLUDED_DP_UCB_H
#define INCLUDED_DP_UCB_H #define INCLUDED_DP_UCB_H
#include <list> #include <list>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_UPDATE_HXX #ifndef INCLUDED_DP_UPDATE_HXX
#define INCLUDED_DP_UPDATE_HXX #define INCLUDED_DP_UPDATE_HXX

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_XML_H #ifndef INCLUDED_DP_XML_H
#define INCLUDED_DP_XML_H #define INCLUDED_DP_XML_H
#include "rtl/ref.hxx" #include "rtl/ref.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_COMMANDENVIRONMENTS_HXX #ifndef INCLUDED_DP_COMMANDENVIRONMENTS_HXX
#define INCLUDED_DP_COMMANDENVIRONMENTS_HXX #define INCLUDED_DP_COMMANDENVIRONMENTS_HXX
#include "cppuhelper/compbase3.hxx" #include "cppuhelper/compbase3.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_EXTENSIONMANAGER_H #ifndef INCLUDED_DP_EXTENSIONMANAGER_H
#define INCLUDED_DP_EXTENSIONMANAGER_H #define INCLUDED_DP_EXTENSIONMANAGER_H
#include "dp_manager.hrc" #include "dp_manager.hrc"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_MANAGER_H #ifndef INCLUDED_DP_MANAGER_H
#define INCLUDED_DP_MANAGER_H #define INCLUDED_DP_MANAGER_H
#include "dp_manager.hrc" #include "dp_manager.hrc"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_MANAGER_HRC #ifndef INCLUDED_DP_MANAGER_HRC
#define INCLUDED_DP_MANAGER_HRC #define INCLUDED_DP_MANAGER_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_PROPERTIES_HXX #ifndef INCLUDED_DP_PROPERTIES_HXX
#define INCLUDED_DP_PROPERTIES_HXX #define INCLUDED_DP_PROPERTIES_HXX

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_COMPBACKENDDB_HXX #ifndef INCLUDED_DP_COMPBACKENDDB_HXX
#define INCLUDED_DP_COMPBACKENDDB_HXX #define INCLUDED_DP_COMPBACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_COMPONENT_HRC #ifndef INCLUDED_DP_COMPONENT_HRC
#define INCLUDED_DP_COMPONENT_HRC #define INCLUDED_DP_COMPONENT_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_CONFIGURATION_HRC #ifndef INCLUDED_DP_CONFIGURATION_HRC
#define INCLUDED_DP_CONFIGURATION_HRC #define INCLUDED_DP_CONFIGURATION_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX #ifndef INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX
#define INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX #define INCLUDED_DP_CONFIGURATIONBACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_EXECUTABLEBACKENDDB_HXX #ifndef INCLUDED_DP_EXECUTABLEBACKENDDB_HXX
#define INCLUDED_DP_EXECUTABLEBACKENDDB_HXX #define INCLUDED_DP_EXECUTABLEBACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_HELP_HRC #ifndef INCLUDED_DP_HELP_HRC
#define INCLUDED_DP_HELP_HRC #define INCLUDED_DP_HELP_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_HELPBACKENDDB_HXX #ifndef INCLUDED_DP_HELPBACKENDDB_HXX
#define INCLUDED_DP_HELPBACKENDDB_HXX #define INCLUDED_DP_HELPBACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_REGISTRY_H #ifndef INCLUDED_DP_REGISTRY_H
#define INCLUDED_DP_REGISTRY_H #define INCLUDED_DP_REGISTRY_H
#include "dp_misc.h" #include "dp_misc.h"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_BACKENDDB_HXX #ifndef INCLUDED_DP_BACKENDDB_HXX
#define INCLUDED_DP_BACKENDDB_HXX #define INCLUDED_DP_BACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_REGISTRY_HRC #ifndef INCLUDED_DP_REGISTRY_HRC
#define INCLUDED_DP_REGISTRY_HRC #define INCLUDED_DP_REGISTRY_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_EXTBACKENDDB_HXX #ifndef INCLUDED_DP_EXTBACKENDDB_HXX
#define INCLUDED_DP_EXTBACKENDDB_HXX #define INCLUDED_DP_EXTBACKENDDB_HXX
#include <utility> #include <utility>

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_PACKAGE_HRC #ifndef INCLUDED_DP_PACKAGE_HRC
#define INCLUDED_DP_PACKAGE_HRC #define INCLUDED_DP_PACKAGE_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_DP_LIB_CONTAINER_H #ifndef INCLUDED_DP_LIB_CONTAINER_H
#define INCLUDED_DP_LIB_CONTAINER_H #define INCLUDED_DP_LIB_CONTAINER_H
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_SCRIPT_HRC #ifndef INCLUDED_DP_SCRIPT_HRC
#define INCLUDED_DP_SCRIPT_HRC #define INCLUDED_DP_SCRIPT_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_SCRIPTBACKENDDB_HXX #ifndef INCLUDED_DP_SCRIPTBACKENDDB_HXX
#define INCLUDED_DP_SCRIPTBACKENDDB_HXX #define INCLUDED_DP_SCRIPTBACKENDDB_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DP_SFWK_HRC #ifndef INCLUDED_DP_SFWK_HRC
#define INCLUDED_DP_SFWK_HRC #define INCLUDED_DP_SFWK_HRC
#include "deployment.hrc" #include "deployment.hrc"

View File

@@ -16,7 +16,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_DESKTOP_HELPID_HRC #ifndef INCLUDED_DESKTOP_HELPID_HRC
#define INCLUDED_DESKTOP_HELPID_HRC #define INCLUDED_DESKTOP_HELPID_HRC
#define HID_PACKAGE_MANAGER "DESKTOP_HID_PACKAGE_MANAGER" #define HID_PACKAGE_MANAGER "DESKTOP_HID_PACKAGE_MANAGER"

View File

@@ -3,7 +3,7 @@
// //
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
#if !defined __SODOCUMENTEVENTLISTENER_H_ #ifndef __SODOCUMENTEVENTLISTENER_H_
#define __SODOCUMENTEVENTLISTENER_H_ #define __SODOCUMENTEVENTLISTENER_H_
#if _MSC_VER > 1000 #if _MSC_VER > 1000

View File

@@ -3,7 +3,7 @@
// //
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
#if !defined __SOCOMWINDOWPEER_H_ #ifndef __SOCOMWINDOWPEER_H_
#define __SOCOMWINDOWPEER_H_ #define __SOCOMWINDOWPEER_H_
#if _MSC_VER > 1000 #if _MSC_VER > 1000

View File

@@ -3,7 +3,7 @@
// //
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
#if !defined __SODISPATCHINTERCEPTOR_H_ #ifndef __SODISPATCHINTERCEPTOR_H_
#define __SODISPATCHINTERCEPTOR_H_ #define __SODISPATCHINTERCEPTOR_H_
#if _MSC_VER > 1000 #if _MSC_VER > 1000

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMACCESS_VIRTUALMACHINE_HXX #ifndef INCLUDED_JVMACCESS_VIRTUALMACHINE_HXX
#define INCLUDED_JVMACCESS_VIRTUALMACHINE_HXX #define INCLUDED_JVMACCESS_VIRTUALMACHINE_HXX
#include "jvmaccessdllapi.h" #include "jvmaccessdllapi.h"

View File

@@ -19,7 +19,7 @@
/** @HTML */ /** @HTML */
#if !defined INCLUDED_JVMFWK_FRAMEWORK_H #ifndef INCLUDED_JVMFWK_FRAMEWORK_H
#define INCLUDED_JVMFWK_FRAMEWORK_H #define INCLUDED_JVMFWK_FRAMEWORK_H
#include "jvmfwkdllapi.h" #include "jvmfwkdllapi.h"

View File

@@ -18,7 +18,7 @@
*/ */
/** @HTML */ /** @HTML */
#if !defined INCLUDED_JVMFWK_VENDORPLUGIN_H #ifndef INCLUDED_JVMFWK_VENDORPLUGIN_H
#define INCLUDED_JVMFWK_VENDORPLUGIN_H #define INCLUDED_JVMFWK_VENDORPLUGIN_H
#include "jvmfwkplugindllapi.h" #include "jvmfwkplugindllapi.h"

View File

@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_GNUJRE_HXX #ifndef INCLUDED_JFW_PLUGIN_GNUJRE_HXX
#define INCLUDED_JFW_PLUGIN_GNUJRE_HXX #define INCLUDED_JFW_PLUGIN_GNUJRE_HXX
#include "vendorbase.hxx" #include "vendorbase.hxx"
#include "vendorlist.hxx" #include "vendorlist.hxx"

View File

@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_OTHERJRE_HXX #ifndef INCLUDED_JFW_PLUGIN_OTHERJRE_HXX
#define INCLUDED_JFW_PLUGIN_OTHERJRE_HXX #define INCLUDED_JFW_PLUGIN_OTHERJRE_HXX
#include "vendorbase.hxx" #include "vendorbase.hxx"
#include "vendorlist.hxx" #include "vendorlist.hxx"

View File

@@ -17,8 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_SUNJRE_HXX #ifndef INCLUDED_JFW_PLUGIN_SUNJRE_HXX
#define INCLUDED_JFW_PLUGIN_SUNJRE_HXX #define INCLUDED_JFW_PLUGIN_SUNJRE_HXX
#include "vendorbase.hxx" #include "vendorbase.hxx"
#include "vendorlist.hxx" #include "vendorlist.hxx"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMACCESS_SUNVERSION_HXX #ifndef INCLUDED_JVMACCESS_SUNVERSION_HXX
#define INCLUDED_JVMACCESS_SUNVERSION_HXX #define INCLUDED_JVMACCESS_SUNVERSION_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_UTIL_HXX #ifndef INCLUDED_JFW_PLUGIN_UTIL_HXX
#define INCLUDED_JFW_PLUGIN_UTIL_HXX #define INCLUDED_JFW_PLUGIN_UTIL_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_VENDORBASE_HXX #ifndef INCLUDED_JFW_PLUGIN_VENDORBASE_HXX
#define INCLUDED_JFW_PLUGIN_VENDORBASE_HXX #define INCLUDED_JFW_PLUGIN_VENDORBASE_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JFW_PLUGIN_VENDORLIST_HXX #ifndef INCLUDED_JFW_PLUGIN_VENDORLIST_HXX
#define INCLUDED_JFW_PLUGIN_VENDORLIST_HXX #define INCLUDED_JFW_PLUGIN_VENDORLIST_HXX
#include "rtl/ref.hxx" #include "rtl/ref.hxx"

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMFWK_ELEMENTS_HXX #ifndef INCLUDED_JVMFWK_ELEMENTS_HXX
#define INCLUDED_JVMFWK_ELEMENTS_HXX #define INCLUDED_JVMFWK_ELEMENTS_HXX
#include <vector> #include <vector>

View File

@@ -16,8 +16,9 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX #ifndef INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX
#define INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX #define INCLUDED_JVMFWK_LOCAL_FRAMEWORK_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
#include "rtl/byteseq.hxx" #include "rtl/byteseq.hxx"
#include "jvmfwk/framework.h" #include "jvmfwk/framework.h"

View File

@@ -16,10 +16,12 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMFWK_FWKBASE_HXX #ifndef INCLUDED_JVMFWK_FWKBASE_HXX
#define INCLUDED_JVMFWK_FWKBASE_HXX #define INCLUDED_JVMFWK_FWKBASE_HXX
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
#include "libxmlutil.hxx" #include "libxmlutil.hxx"
namespace jfw namespace jfw
{ {

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMFWK_FWKUTIL_HXX #ifndef INCLUDED_JVMFWK_FWKUTIL_HXX
#define INCLUDED_JVMFWK_FWKUTIL_HXX #define INCLUDED_JVMFWK_FWKUTIL_HXX
#include "sal/config.h" #include "sal/config.h"

View File

@@ -16,13 +16,13 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if !defined INCLUDED_JVMFWK_LIBXMLUTIL_HXX #ifndef INCLUDED_JVMFWK_LIBXMLUTIL_HXX
#define INCLUDED_JVMFWK_LIBXMLUTIL_HXX #define INCLUDED_JVMFWK_LIBXMLUTIL_HXX
#include "libxml/parser.h" #include "libxml/parser.h"
#include "libxml/xpath.h" #include "libxml/xpath.h"
#include "rtl/ustring.hxx" #include "rtl/ustring.hxx"
namespace jfw namespace jfw
{ {
class CXPathObjectPtr class CXPathObjectPtr

View File

@@ -37,7 +37,7 @@
// //
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
#if !defined __SOCOMWINDOWPEER_H_ #ifndef __SOCOMWINDOWPEER_H_
#define __SOCOMWINDOWPEER_H_ #define __SOCOMWINDOWPEER_H_
#if _MSC_VER > 1000 #if _MSC_VER > 1000

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_DeploymentException_idl #ifndef INCLUDED_com_sun_star_deployment_DeploymentException_idl
#define INCLUDED_com_sun_star_deployment_DeploymentException_idl #define INCLUDED_com_sun_star_deployment_DeploymentException_idl
#include <com/sun/star/uno/Exception.idl> #include <com/sun/star/uno/Exception.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_ExtensionManagerFactory_idl #ifndef INCLUDED_com_sun_star_deployment_ExtensionManagerFactory_idl
#define INCLUDED_com_sun_star_deployment_ExtensionManagerFactory_idl #define INCLUDED_com_sun_star_deployment_ExtensionManagerFactory_idl
#include <com/sun/star/deployment/XExtensionManager.idl> #include <com/sun/star/deployment/XExtensionManager.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_LicenseException_idl #ifndef INCLUDED_com_sun_star_deployment_LicenseException_idl
#define INCLUDED_com_sun_star_deployment_LicenseException_idl #define INCLUDED_com_sun_star_deployment_LicenseException_idl
#include <com/sun/star/uno/Exception.idl> #include <com/sun/star/uno/Exception.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_PackageRegistryBackend_idl #ifndef INCLUDED_com_sun_star_deployment_PackageRegistryBackend_idl
#define INCLUDED_com_sun_star_deployment_PackageRegistryBackend_idl #define INCLUDED_com_sun_star_deployment_PackageRegistryBackend_idl
#include <com/sun/star/deployment/XPackageRegistry.idl> #include <com/sun/star/deployment/XPackageRegistry.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_PlatformException_idl #ifndef INCLUDED_com_sun_star_deployment_PlatformException_idl
#define INCLUDED_com_sun_star_deployment_PlatformException_idl #define INCLUDED_com_sun_star_deployment_PlatformException_idl
#include <com/sun/star/uno/Exception.idl> #include <com/sun/star/uno/Exception.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_XExtensionManager_idl #ifndef INCLUDED_com_sun_star_deployment_XExtensionManager_idl
#define INCLUDED_com_sun_star_deployment_XExtensionManager_idl #define INCLUDED_com_sun_star_deployment_XExtensionManager_idl
#include <com/sun/star/lang/XComponent.idl> #include <com/sun/star/lang/XComponent.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_XPackage_idl #ifndef INCLUDED_com_sun_star_deployment_XPackage_idl
#define INCLUDED_com_sun_star_deployment_XPackage_idl #define INCLUDED_com_sun_star_deployment_XPackage_idl
#include <com/sun/star/beans/Optional.idl> #include <com/sun/star/beans/Optional.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_XPackageManager_idl #ifndef INCLUDED_com_sun_star_deployment_XPackageManager_idl
#define INCLUDED_com_sun_star_deployment_XPackageManager_idl #define INCLUDED_com_sun_star_deployment_XPackageManager_idl
#include <com/sun/star/lang/XComponent.idl> #include <com/sun/star/lang/XComponent.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_XPackageManagerFactory_idl #ifndef INCLUDED_com_sun_star_deployment_XPackageManagerFactory_idl
#define INCLUDED_com_sun_star_deployment_XPackageManagerFactory_idl #define INCLUDED_com_sun_star_deployment_XPackageManagerFactory_idl
#include <com/sun/star/lang/IllegalArgumentException.idl> #include <com/sun/star/lang/IllegalArgumentException.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_XPackageRegistry_idl #ifndef INCLUDED_com_sun_star_deployment_XPackageRegistry_idl
#define INCLUDED_com_sun_star_deployment_XPackageRegistry_idl #define INCLUDED_com_sun_star_deployment_XPackageRegistry_idl
#include <com/sun/star/deployment/XPackage.idl> #include <com/sun/star/deployment/XPackage.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_XPackageTypeInfo_idl #ifndef INCLUDED_com_sun_star_deployment_XPackageTypeInfo_idl
#define INCLUDED_com_sun_star_deployment_XPackageTypeInfo_idl #define INCLUDED_com_sun_star_deployment_XPackageTypeInfo_idl
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_thePackageManagerFactory_idl #ifndef INCLUDED_com_sun_star_deployment_thePackageManagerFactory_idl
#define INCLUDED_com_sun_star_deployment_thePackageManagerFactory_idl #define INCLUDED_com_sun_star_deployment_thePackageManagerFactory_idl
#include <com/sun/star/deployment/XPackageManagerFactory.idl> #include <com/sun/star/deployment/XPackageManagerFactory.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl #ifndef INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl
#define INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl #define INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl
#include <com/sun/star/ui/dialogs/XExecutableDialog.idl> #include <com/sun/star/ui/dialogs/XExecutableDialog.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_deployment_ui_PackageManagerDialog_idl #ifndef INCLUDED_com_sun_star_deployment_ui_PackageManagerDialog_idl
#define INCLUDED_com_sun_star_deployment_ui_PackageManagerDialog_idl #define INCLUDED_com_sun_star_deployment_ui_PackageManagerDialog_idl
#include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.idl> #include <com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_deployment_ui_UpdateRequiredDialog_idl #ifndef INCLUDED_com_sun_star_deployment_ui_UpdateRequiredDialog_idl
#define INCLUDED_com_sun_star_deployment_ui_UpdateRequiredDialog_idl #define INCLUDED_com_sun_star_deployment_ui_UpdateRequiredDialog_idl
#include <com/sun/star/ui/dialogs/XExecutableDialog.idl> #include <com/sun/star/ui/dialogs/XExecutableDialog.idl>

View File

@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_rendering_CanvasFactory_idl #ifndef INCLUDED_com_sun_star_rendering_CanvasFactory_idl
#define INCLUDED_com_sun_star_rendering_CanvasFactory_idl #define INCLUDED_com_sun_star_rendering_CanvasFactory_idl
#include <com/sun/star/lang/XMultiComponentFactory.idl> #include <com/sun/star/lang/XMultiComponentFactory.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_security_CertificateContainer_idl #ifndef INCLUDED_com_sun_star_security_CertificateContainer_idl
#define INCLUDED_com_sun_star_security_CertificateContainer_idl #define INCLUDED_com_sun_star_security_CertificateContainer_idl
#include <com/sun/star/security/XCertificateContainer.idl> #include <com/sun/star/security/XCertificateContainer.idl>

View File

@@ -26,7 +26,7 @@
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_security_XCertificateContainer_idl #ifndef INCLUDED_com_sun_star_security_XCertificateContainer_idl
#define INCLUDED_com_sun_star_security_XCertificateContainer_idl #define INCLUDED_com_sun_star_security_XCertificateContainer_idl
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED_com_sun_star_task_XAbortChannel_idl #ifndef INCLUDED_com_sun_star_task_XAbortChannel_idl
#define INCLUDED_com_sun_star_task_XAbortChannel_idl #define INCLUDED_com_sun_star_task_XAbortChannel_idl
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>

View File

@@ -25,7 +25,7 @@
* for a copy of the LGPLv3 License. * for a copy of the LGPLv3 License.
* *
************************************************************************/ ************************************************************************/
#if ! defined INCLUDED_com_sun_star_ucb_ExpandContentProvider_idl #ifndef INCLUDED_com_sun_star_ucb_ExpandContentProvider_idl
#define INCLUDED_com_sun_star_ucb_ExpandContentProvider_idl #define INCLUDED_com_sun_star_ucb_ExpandContentProvider_idl
#include <com/sun/star/ucb/ContentProvider.idl> #include <com/sun/star/ucb/ContentProvider.idl>

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED__com_sun_star_xml_input_SaxDocumentHandler_idl__ #ifndef INCLUDED__com_sun_star_xml_input_SaxDocumentHandler_idl__
#define INCLUDED__com_sun_star_xml_input_SaxDocumentHandler_idl__ #define INCLUDED__com_sun_star_xml_input_SaxDocumentHandler_idl__
#include <com/sun/star/xml/input/XRoot.idl> #include <com/sun/star/xml/input/XRoot.idl>

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED__com_sun_star_xml_input_XAttributes_idl__ #ifndef INCLUDED__com_sun_star_xml_input_XAttributes_idl__
#define INCLUDED__com_sun_star_xml_input_XAttributes_idl__ #define INCLUDED__com_sun_star_xml_input_XAttributes_idl__
#include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/uno/XInterface.idl>

View File

@@ -16,7 +16,7 @@
* except in compliance with the License. You may obtain a copy of * except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#if ! defined INCLUDED__com_sun_star_xml_input_XElement_idl__ #ifndef INCLUDED__com_sun_star_xml_input_XElement_idl__
#define INCLUDED__com_sun_star_xml_input_XElement_idl__ #define INCLUDED__com_sun_star_xml_input_XElement_idl__
#include <com/sun/star/xml/input/XAttributes.idl> #include <com/sun/star/xml/input/XAttributes.idl>

Some files were not shown because too many files have changed in this diff Show More