cppuhelper: fix includes

Change-Id: I0e6bc822d19cf266dea716fe92f2ccd08d87c51f
This commit is contained in:
Thomas Arnhold
2014-06-04 16:23:19 +02:00
parent a2db194ea0
commit 530899ba18
35 changed files with 357 additions and 357 deletions

View File

@@ -24,11 +24,11 @@
#include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h> #include <cppunit/plugin/TestPlugIn.h>
#include "com/sun/star/lang/XEventListener.hpp" #include <com/sun/star/lang/XEventListener.hpp>
#include "cppuhelper/interfacecontainer.hxx" #include <cppuhelper/interfacecontainer.hxx>
#include "cppuhelper/queryinterface.hxx" #include <cppuhelper/queryinterface.hxx>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/propshlp.hxx" #include <cppuhelper/propshlp.hxx>
using namespace com::sun::star; using namespace com::sun::star;
using namespace com::sun::star::uno; using namespace com::sun::star::uno;

View File

@@ -18,35 +18,35 @@
*/ */
#include "sal/config.h" #include <sal/config.h>
#include "test/cppuhelper/propertysetmixin/XSupplier.hpp" #include <test/cppuhelper/propertysetmixin/XSupplier.hpp>
#include "test/cppuhelper/propertysetmixin/XTest3.hpp" #include <test/cppuhelper/propertysetmixin/XTest3.hpp>
#include "com/sun/star/beans/Ambiguous.hpp" #include <com/sun/star/beans/Ambiguous.hpp>
#include "com/sun/star/beans/Defaulted.hpp" #include <com/sun/star/beans/Defaulted.hpp>
#include "com/sun/star/beans/Optional.hpp" #include <com/sun/star/beans/Optional.hpp>
#include "com/sun/star/beans/PropertyVetoException.hpp" #include <com/sun/star/beans/PropertyVetoException.hpp>
#include "com/sun/star/beans/UnknownPropertyException.hpp" #include <com/sun/star/beans/UnknownPropertyException.hpp>
#include "com/sun/star/lang/XComponent.hpp" #include <com/sun/star/lang/XComponent.hpp>
#include "cppuhelper/propertysetmixin.hxx" #include <cppuhelper/propertysetmixin.hxx>
#include "cppuhelper/factory.hxx" #include <cppuhelper/factory.hxx>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/implementationentry.hxx" #include <cppuhelper/implementationentry.hxx>
#include "cppuhelper/queryinterface.hxx" #include <cppuhelper/queryinterface.hxx>
#include "cppuhelper/weak.hxx" #include <cppuhelper/weak.hxx>
#include "com/sun/star/uno/Any.hxx" #include <com/sun/star/uno/Any.hxx>
#include "com/sun/star/uno/Exception.hpp" #include <com/sun/star/uno/Exception.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "com/sun/star/uno/Type.hxx" #include <com/sun/star/uno/Type.hxx>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "com/sun/star/uno/XInterface.hpp" #include <com/sun/star/uno/XInterface.hpp>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "rtl/ustring.h" #include <rtl/ustring.h>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
namespace com { namespace sun { namespace star { namespace com { namespace sun { namespace star {
class XEventListener; class XEventListener;

View File

@@ -19,47 +19,47 @@
#include <sal/types.h> #include <sal/types.h>
#include "test/cppuhelper/propertysetmixin/CppSupplier.hpp" #include <test/cppuhelper/propertysetmixin/CppSupplier.hpp>
#include "test/cppuhelper/propertysetmixin/JavaSupplier.hpp" #include <test/cppuhelper/propertysetmixin/JavaSupplier.hpp>
#include "test/cppuhelper/propertysetmixin/XSupplier.hpp" #include <test/cppuhelper/propertysetmixin/XSupplier.hpp>
#include "test/cppuhelper/propertysetmixin/XTest3.hpp" #include <test/cppuhelper/propertysetmixin/XTest3.hpp>
#include "com/sun/star/beans/Ambiguous.hpp" #include <com/sun/star/beans/Ambiguous.hpp>
#include "com/sun/star/beans/Defaulted.hpp" #include <com/sun/star/beans/Defaulted.hpp>
#include "com/sun/star/beans/Optional.hpp" #include <com/sun/star/beans/Optional.hpp>
#include "com/sun/star/beans/Property.hpp" #include <com/sun/star/beans/Property.hpp>
#include "com/sun/star/beans/PropertyAttribute.hpp" #include <com/sun/star/beans/PropertyAttribute.hpp>
#include "com/sun/star/beans/PropertyChangeEvent.hpp" #include <com/sun/star/beans/PropertyChangeEvent.hpp>
#include "com/sun/star/beans/PropertyState.hpp" #include <com/sun/star/beans/PropertyState.hpp>
#include "com/sun/star/beans/PropertyValue.hpp" #include <com/sun/star/beans/PropertyValue.hpp>
#include "com/sun/star/beans/PropertyVetoException.hpp" #include <com/sun/star/beans/PropertyVetoException.hpp>
#include "com/sun/star/beans/UnknownPropertyException.hpp" #include <com/sun/star/beans/UnknownPropertyException.hpp>
#include "com/sun/star/beans/XFastPropertySet.hpp" #include <com/sun/star/beans/XFastPropertySet.hpp>
#include "com/sun/star/beans/XPropertyAccess.hpp" #include <com/sun/star/beans/XPropertyAccess.hpp>
#include "com/sun/star/beans/XPropertyChangeListener.hpp" #include <com/sun/star/beans/XPropertyChangeListener.hpp>
#include "com/sun/star/beans/XPropertySet.hpp" #include <com/sun/star/beans/XPropertySet.hpp>
#include "com/sun/star/beans/XPropertySetInfo.hpp" #include <com/sun/star/beans/XPropertySetInfo.hpp>
#include "com/sun/star/beans/XVetoableChangeListener.hpp" #include <com/sun/star/beans/XVetoableChangeListener.hpp>
#include "com/sun/star/lang/XComponent.hpp" #include <com/sun/star/lang/XComponent.hpp>
#include "com/sun/star/uno/Any.hxx" #include <com/sun/star/uno/Any.hxx>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "com/sun/star/uno/Type.hxx" #include <com/sun/star/uno/Type.hxx>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "cppuhelper/bootstrap.hxx" #include <cppuhelper/bootstrap.hxx>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppunit/TestAssert.h" #include "cppunit/TestAssert.h"
#include "cppunit/TestFixture.h" #include "cppunit/TestFixture.h"
#include "cppunit/extensions/HelperMacros.h" #include "cppunit/extensions/HelperMacros.h"
#include "cppunit/plugin/TestPlugIn.h" #include "cppunit/plugin/TestPlugIn.h"
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "rtl/string.h" #include <rtl/string.h>
#include "rtl/textenc.h" #include <rtl/textenc.h>
#include "rtl/ustring.h" #include <rtl/ustring.h>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
#include <limits> #include <limits>
#include <ostream> #include <ostream>

View File

@@ -22,13 +22,13 @@
#include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h> #include <cppunit/plugin/TestPlugIn.h>
#include "cppuhelper/unourl.hxx" #include <cppuhelper/unourl.hxx>
#include "rtl/malformeduriexception.hxx" #include <rtl/malformeduriexception.hxx>
#include "rtl/strbuf.hxx" #include <rtl/strbuf.hxx>
#include "rtl/string.h" #include <rtl/string.h>
#include "rtl/textenc.h" #include <rtl/textenc.h>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
namespace cppu_unourl namespace cppu_unourl
{ {

View File

@@ -22,16 +22,16 @@
#include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/HelperMacros.h>
#include <cppunit/plugin/TestPlugIn.h> #include <cppunit/plugin/TestPlugIn.h>
#include "com/sun/star/lang/DisposedException.hpp" #include <com/sun/star/lang/DisposedException.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/XAdapter.hpp" #include <com/sun/star/uno/XAdapter.hpp>
#include "com/sun/star/uno/XReference.hpp" #include <com/sun/star/uno/XReference.hpp>
#include "com/sun/star/uno/XWeak.hpp" #include <com/sun/star/uno/XWeak.hpp>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/weak.hxx" #include <cppuhelper/weak.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "sal/types.h" #include <sal/types.h>
namespace { namespace {

View File

@@ -17,28 +17,28 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <cstring> #include <cstring>
#include "rtl/process.h" #include <rtl/process.h>
#include "rtl/bootstrap.hxx" #include <rtl/bootstrap.hxx>
#include "rtl/random.h" #include <rtl/random.h>
#include "rtl/string.hxx" #include <rtl/string.hxx>
#include "rtl/ustrbuf.hxx" #include <rtl/ustrbuf.hxx>
#include "rtl/uri.hxx" #include <rtl/uri.hxx>
#include "osl/diagnose.h" #include <osl/diagnose.h>
#include "osl/file.hxx" #include <osl/file.hxx>
#include "osl/security.hxx" #include <osl/security.hxx>
#include "osl/thread.hxx" #include <osl/thread.hxx>
#include "cppuhelper/bootstrap.hxx" #include <cppuhelper/bootstrap.hxx>
#include "cppuhelper/findsofficepath.h" #include <cppuhelper/findsofficepath.h>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "com/sun/star/bridge/UnoUrlResolver.hpp" #include <com/sun/star/bridge/UnoUrlResolver.hpp>
#include "com/sun/star/bridge/XUnoUrlResolver.hpp" #include <com/sun/star/bridge/XUnoUrlResolver.hpp>
#include "macro_expander.hxx" #include "macro_expander.hxx"

View File

@@ -17,16 +17,16 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <cstdlib> #include <cstdlib>
#include "com/sun/star/loader/CannotActivateFactoryException.hpp" #include <com/sun/star/loader/CannotActivateFactoryException.hpp>
#include "com/sun/star/uno/Exception.hpp" #include <com/sun/star/uno/Exception.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "osl/module.h" #include <osl/module.h>
#include "sal/types.h" #include <sal/types.h>
namespace com { namespace sun { namespace star { namespace com { namespace sun { namespace star {
namespace lang { namespace lang {

View File

@@ -22,7 +22,7 @@
#include <cppuhelper/component.hxx> #include <cppuhelper/component.hxx>
#include <cppuhelper/queryinterface.hxx> #include <cppuhelper/queryinterface.hxx>
#include <cppuhelper/typeprovider.hxx> #include <cppuhelper/typeprovider.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
using namespace osl; using namespace osl;
using namespace com::sun::star; using namespace com::sun::star;

View File

@@ -51,8 +51,8 @@
#include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySet.hpp>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#define SMGR_SINGLETON "/singletons/com.sun.star.lang.theServiceManager" #define SMGR_SINGLETON "/singletons/com.sun.star.lang.theServiceManager"
#define TDMGR_SINGLETON "/singletons/com.sun.star.reflection.theTypeDescriptionManager" #define TDMGR_SINGLETON "/singletons/com.sun.star.reflection.theTypeDescriptionManager"

View File

@@ -7,20 +7,20 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <cassert> #include <cassert>
#include <vector> #include <vector>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/Any.hxx" #include <com/sun/star/uno/Any.hxx>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "cppuhelper/bootstrap.hxx" #include <cppuhelper/bootstrap.hxx>
#include "cppuhelper/component_context.hxx" #include <cppuhelper/component_context.hxx>
#include "rtl/bootstrap.hxx" #include <rtl/bootstrap.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
using rtl::OUString; using rtl::OUString;

View File

@@ -18,17 +18,17 @@
*/ */
#include "rtl/instance.hxx" #include <rtl/instance.hxx>
#include "osl/diagnose.h" #include <osl/diagnose.h>
#include "osl/doublecheckedlocking.h" #include <osl/doublecheckedlocking.h>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "uno/dispatcher.hxx" #include <uno/dispatcher.hxx>
#include <uno/lbnames.h> #include <uno/lbnames.h>
#include "uno/mapping.hxx" #include <uno/mapping.hxx>
#include "cppuhelper/detail/XExceptionThrower.hpp" #include <cppuhelper/detail/XExceptionThrower.hpp>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "cppuhelper/exc_hlp.hxx" #include <cppuhelper/exc_hlp.hxx>
using namespace ::osl; using namespace ::osl;
using namespace ::cppu; using namespace ::cppu;

View File

@@ -30,7 +30,7 @@
#include <rtl/instance.hxx> #include <rtl/instance.hxx>
#include <rtl/unload.h> #include <rtl/unload.h>
#include "cppuhelper/propshlp.hxx" #include <cppuhelper/propshlp.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XSingleServiceFactory.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp>
@@ -40,7 +40,7 @@
#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/uno/XUnloadingPreference.hpp> #include <com/sun/star/uno/XUnloadingPreference.hpp>
#include "com/sun/star/beans/PropertyAttribute.hpp" #include <com/sun/star/beans/PropertyAttribute.hpp>
#include <memory> #include <memory>

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 .
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@@ -24,7 +24,7 @@
#include <rtl/string.hxx> #include <rtl/string.hxx>
#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XComponent.hpp>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
using namespace ::osl; using namespace ::osl;
using namespace ::com::sun::star; using namespace ::com::sun::star;

View File

@@ -26,7 +26,7 @@
#include <rtl/uuid.h> #include <rtl/uuid.h>
#include <cppuhelper/compbase_ex.hxx> #include <cppuhelper/compbase_ex.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
using namespace ::cppu; using namespace ::cppu;
using namespace ::osl; using namespace ::osl;

View File

@@ -14,7 +14,7 @@
#include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Reference.hxx>
#include <servicemanager.hxx> #include "servicemanager.hxx"
namespace com { namespace sun { namespace star { namespace com { namespace sun { namespace star {
namespace lang { class XMultiServiceFactory; } namespace lang { class XMultiServiceFactory; }

View File

@@ -30,7 +30,7 @@
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/util/XMacroExpander.hpp> #include <com/sun/star/util/XMacroExpander.hpp>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "macro_expander.hxx" #include "macro_expander.hxx"
#include "paths.hxx" #include "paths.hxx"

View File

@@ -20,10 +20,10 @@
#ifndef INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX #ifndef INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX
#define INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX #define INCLUDED_CPPUHELPER_SOURCE_MACRO_EXPANDER_HXX
#include "sal/config.h" #include <sal/config.h>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "sal/types.h" #include <sal/types.h>
namespace com { namespace sun { namespace star { namespace lang { namespace com { namespace sun { namespace star { namespace lang {
class XSingleComponentFactory; class XSingleComponentFactory;

View File

@@ -20,18 +20,18 @@
#include <config_features.h> #include <config_features.h>
#include <config_folders.h> #include <config_folders.h>
#include "sal/config.h" #include <sal/config.h>
#include <cassert> #include <cassert>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/XInterface.hpp" #include <com/sun/star/uno/XInterface.hpp>
#include "osl/file.hxx" #include <osl/file.hxx>
#include "osl/module.hxx" #include <osl/module.hxx>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
#include "paths.hxx" #include "paths.hxx"

View File

@@ -20,7 +20,7 @@
#ifndef INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX #ifndef INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX
#define INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX #define INCLUDED_CPPUHELPER_SOURCE_PATHS_HXX
#include "sal/config.h" #include <sal/config.h>
namespace osl { class Directory; } namespace osl { class Directory; }
namespace rtl { class OUString; } namespace rtl { class OUString; }

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 .
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <algorithm> #include <algorithm>
#include <cassert> #include <cassert>
@@ -26,54 +26,54 @@
#include <set> #include <set>
#include <vector> #include <vector>
#include "com/sun/star/beans/Property.hpp" #include <com/sun/star/beans/Property.hpp>
#include "com/sun/star/beans/PropertyChangeEvent.hpp" #include <com/sun/star/beans/PropertyChangeEvent.hpp>
#include "com/sun/star/beans/PropertyAttribute.hpp" #include <com/sun/star/beans/PropertyAttribute.hpp>
#include "com/sun/star/beans/PropertyValue.hpp" #include <com/sun/star/beans/PropertyValue.hpp>
#include "com/sun/star/beans/PropertyVetoException.hpp" #include <com/sun/star/beans/PropertyVetoException.hpp>
#include "com/sun/star/beans/UnknownPropertyException.hpp" #include <com/sun/star/beans/UnknownPropertyException.hpp>
#include "com/sun/star/beans/XFastPropertySet.hpp" #include <com/sun/star/beans/XFastPropertySet.hpp>
#include "com/sun/star/beans/XPropertyAccess.hpp" #include <com/sun/star/beans/XPropertyAccess.hpp>
#include "com/sun/star/beans/XPropertyChangeListener.hpp" #include <com/sun/star/beans/XPropertyChangeListener.hpp>
#include "com/sun/star/beans/XPropertySet.hpp" #include <com/sun/star/beans/XPropertySet.hpp>
#include "com/sun/star/beans/XPropertySetInfo.hpp" #include <com/sun/star/beans/XPropertySetInfo.hpp>
#include "com/sun/star/beans/XVetoableChangeListener.hpp" #include <com/sun/star/beans/XVetoableChangeListener.hpp>
#include "com/sun/star/container/NoSuchElementException.hpp" #include <com/sun/star/container/NoSuchElementException.hpp>
#include "com/sun/star/container/XHierarchicalNameAccess.hpp" #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#include "com/sun/star/lang/DisposedException.hpp" #include <com/sun/star/lang/DisposedException.hpp>
#include "com/sun/star/lang/EventObject.hpp" #include <com/sun/star/lang/EventObject.hpp>
#include "com/sun/star/lang/IllegalAccessException.hpp" #include <com/sun/star/lang/IllegalAccessException.hpp>
#include "com/sun/star/lang/IllegalArgumentException.hpp" #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include "com/sun/star/lang/WrappedTargetException.hpp" #include <com/sun/star/lang/WrappedTargetException.hpp>
#include "com/sun/star/lang/WrappedTargetRuntimeException.hpp" #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
#include "com/sun/star/reflection/XCompoundTypeDescription.hpp" #include <com/sun/star/reflection/XCompoundTypeDescription.hpp>
#include "com/sun/star/reflection/XIdlClass.hpp" #include <com/sun/star/reflection/XIdlClass.hpp>
#include "com/sun/star/reflection/XIdlField2.hpp" #include <com/sun/star/reflection/XIdlField2.hpp>
#include "com/sun/star/reflection/XIndirectTypeDescription.hpp" #include <com/sun/star/reflection/XIndirectTypeDescription.hpp>
#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp" #include <com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp>
#include "com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp" #include <com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp>
#include "com/sun/star/reflection/XInterfaceTypeDescription2.hpp" #include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp>
#include "com/sun/star/reflection/XStructTypeDescription.hpp" #include <com/sun/star/reflection/XStructTypeDescription.hpp>
#include "com/sun/star/reflection/XTypeDescription.hpp" #include <com/sun/star/reflection/XTypeDescription.hpp>
#include "com/sun/star/reflection/theCoreReflection.hpp" #include <com/sun/star/reflection/theCoreReflection.hpp>
#include "com/sun/star/uno/Any.hxx" #include <com/sun/star/uno/Any.hxx>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/Exception.hpp" #include <com/sun/star/uno/Exception.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "com/sun/star/uno/Type.hxx" #include <com/sun/star/uno/Type.hxx>
#include "com/sun/star/uno/TypeClass.hpp" #include <com/sun/star/uno/TypeClass.hpp>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "com/sun/star/uno/XInterface.hpp" #include <com/sun/star/uno/XInterface.hpp>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/propertysetmixin.hxx" #include <cppuhelper/propertysetmixin.hxx>
#include "cppuhelper/weak.hxx" #include <cppuhelper/weak.hxx>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
#include "salhelper/simplereferenceobject.hxx" #include <salhelper/simplereferenceobject.hxx>
using cppu::PropertySetMixinImpl; using cppu::PropertySetMixinImpl;

View File

@@ -18,13 +18,13 @@
*/ */
#include "osl/diagnose.h" #include <osl/diagnose.h>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/weak.hxx" #include <cppuhelper/weak.hxx>
#include "cppuhelper/propshlp.hxx" #include <cppuhelper/propshlp.hxx>
#include "cppuhelper/exc_hlp.hxx" #include <cppuhelper/exc_hlp.hxx>
#include "com/sun/star/beans/PropertyAttribute.hpp" #include <com/sun/star/beans/PropertyAttribute.hpp>
#include "com/sun/star/lang/DisposedException.hpp" #include <com/sun/star/lang/DisposedException.hpp>
using namespace osl; using namespace osl;

View File

@@ -7,50 +7,50 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <algorithm> #include <algorithm>
#include <cassert> #include <cassert>
#include <vector> #include <vector>
#include "boost/noncopyable.hpp" #include <boost/noncopyable.hpp>
#include "boost/shared_ptr.hpp" #include <boost/shared_ptr.hpp>
#include "com/sun/star/beans/NamedValue.hpp" #include <com/sun/star/beans/NamedValue.hpp>
#include "com/sun/star/beans/PropertyAttribute.hpp" #include <com/sun/star/beans/PropertyAttribute.hpp>
#include "com/sun/star/container/ElementExistException.hpp" #include <com/sun/star/container/ElementExistException.hpp>
#include "com/sun/star/container/XEnumeration.hpp" #include <com/sun/star/container/XEnumeration.hpp>
#include "com/sun/star/container/XNameContainer.hpp" #include <com/sun/star/container/XNameContainer.hpp>
#include "com/sun/star/lang/XInitialization.hpp" #include <com/sun/star/lang/XInitialization.hpp>
#include "com/sun/star/lang/XServiceInfo.hpp" #include <com/sun/star/lang/XServiceInfo.hpp>
#include "com/sun/star/lang/XSingleComponentFactory.hpp" #include <com/sun/star/lang/XSingleComponentFactory.hpp>
#include "com/sun/star/lang/XSingleServiceFactory.hpp" #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include "com/sun/star/loader/XImplementationLoader.hpp" #include <com/sun/star/loader/XImplementationLoader.hpp>
#include "com/sun/star/registry/InvalidRegistryException.hpp" #include <com/sun/star/registry/InvalidRegistryException.hpp>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "cppuhelper/bootstrap.hxx" #include <cppuhelper/bootstrap.hxx>
#include "cppuhelper/component_context.hxx" #include <cppuhelper/component_context.hxx>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/implbase3.hxx" #include <cppuhelper/implbase3.hxx>
#include "cppuhelper/shlib.hxx" #include <cppuhelper/shlib.hxx>
#include "cppuhelper/supportsservice.hxx" #include <cppuhelper/supportsservice.hxx>
#include "osl/file.hxx" #include <osl/file.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "rtl/uri.hxx" #include <rtl/uri.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "rtl/strbuf.hxx" #include <rtl/strbuf.hxx>
#include "sal/log.hxx" #include <sal/log.hxx>
#include "uno/environment.hxx" #include <uno/environment.hxx>
#include <loadsharedlibcomponentfactory.hxx> #include "loadsharedlibcomponentfactory.hxx"
using rtl::OUString; using rtl::OUString;
using rtl::OString; using rtl::OString;
using rtl::OStringBuffer; using rtl::OStringBuffer;
#include "registry/registry.hxx" #include <registry/registry.hxx>
#include "xmlreader/xmlreader.hxx" #include <xmlreader/xmlreader.hxx>
#include "paths.hxx" #include "paths.hxx"
#include "servicemanager.hxx" #include "servicemanager.hxx"

View File

@@ -10,31 +10,31 @@
#ifndef INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX #ifndef INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX
#define INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX #define INCLUDED_CPPUHELPER_SOURCE_SERVICEMANAGER_HXX
#include "sal/config.h" #include <sal/config.h>
#include <cassert> #include <cassert>
#include <map> #include <map>
#include <vector> #include <vector>
#include "boost/noncopyable.hpp" #include <boost/noncopyable.hpp>
#include "boost/shared_ptr.hpp" #include <boost/shared_ptr.hpp>
#include "com/sun/star/beans/XPropertySet.hpp" #include <com/sun/star/beans/XPropertySet.hpp>
#include "com/sun/star/beans/XPropertySetInfo.hpp" #include <com/sun/star/beans/XPropertySetInfo.hpp>
#include "com/sun/star/container/XContentEnumerationAccess.hpp" #include <com/sun/star/container/XContentEnumerationAccess.hpp>
#include "com/sun/star/container/XSet.hpp" #include <com/sun/star/container/XSet.hpp>
#include "com/sun/star/lang/XEventListener.hpp" #include <com/sun/star/lang/XEventListener.hpp>
#include "com/sun/star/lang/XMultiComponentFactory.hpp" #include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include "com/sun/star/lang/XMultiServiceFactory.hpp" #include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include "com/sun/star/lang/XServiceInfo.hpp" #include <com/sun/star/lang/XServiceInfo.hpp>
#include "com/sun/star/lang/XSingleServiceFactory.hpp" #include <com/sun/star/lang/XSingleServiceFactory.hpp>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "cppuhelper/basemutex.hxx" #include <cppuhelper/basemutex.hxx>
#include "cppuhelper/compbase8.hxx" #include <cppuhelper/compbase8.hxx>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "registry/registry.hxx" #include <registry/registry.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "cppuhelper/weak.hxx" #include <cppuhelper/weak.hxx>
namespace com { namespace sun { namespace star { namespace lang { namespace com { namespace sun { namespace star { namespace lang {
class XSingleComponentFactory; class XSingleComponentFactory;

View File

@@ -29,7 +29,7 @@
#include <uno/environment.hxx> #include <uno/environment.hxx>
#include <uno/mapping.hxx> #include <uno/mapping.hxx>
#include <loadsharedlibcomponentfactory.hxx> #include "loadsharedlibcomponentfactory.hxx"
#if defined DISABLE_DYNLOADING #if defined DISABLE_DYNLOADING
#include <osl/detail/component-mapping.h> #include <osl/detail/component-mapping.h>

View File

@@ -7,15 +7,15 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <cassert> #include <cassert>
#include "com/sun/star/lang/XServiceInfo.hpp" #include <com/sun/star/lang/XServiceInfo.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "cppuhelper/supportsservice.hxx" #include <cppuhelper/supportsservice.hxx>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
bool cppu::supportsService( bool cppu::supportsService(
css::lang::XServiceInfo * implementation, rtl::OUString const & name) css::lang::XServiceInfo * implementation, rtl::OUString const & name)

View File

@@ -18,7 +18,7 @@
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <vector> #include <vector>
@@ -47,9 +47,9 @@
#include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp> #include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp>
#include <com/sun/star/reflection/XCompoundTypeDescription.hpp> #include <com/sun/star/reflection/XCompoundTypeDescription.hpp>
#include <com/sun/star/reflection/XStructTypeDescription.hpp> #include <com/sun/star/reflection/XStructTypeDescription.hpp>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "boost/scoped_array.hpp" #include <boost/scoped_array.hpp>
using namespace ::com::sun::star; using namespace ::com::sun::star;
using namespace ::com::sun::star::uno; using namespace ::com::sun::star::uno;

View File

@@ -7,7 +7,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "sal/config.h" #include <sal/config.h>
#include <cassert> #include <cassert>
#include <cstddef> #include <cstddef>
@@ -17,47 +17,47 @@
#include <stack> #include <stack>
#include <vector> #include <vector>
#include "boost/noncopyable.hpp" #include <boost/noncopyable.hpp>
#include "com/sun/star/container/ElementExistException.hpp" #include <com/sun/star/container/ElementExistException.hpp>
#include "com/sun/star/container/NoSuchElementException.hpp" #include <com/sun/star/container/NoSuchElementException.hpp>
#include "com/sun/star/lang/IllegalArgumentException.hpp" #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include "com/sun/star/reflection/InvalidTypeNameException.hpp" #include <com/sun/star/reflection/InvalidTypeNameException.hpp>
#include "com/sun/star/reflection/NoSuchTypeNameException.hpp" #include <com/sun/star/reflection/NoSuchTypeNameException.hpp>
#include "com/sun/star/reflection/TypeDescriptionSearchDepth.hpp" #include <com/sun/star/reflection/TypeDescriptionSearchDepth.hpp>
#include "com/sun/star/reflection/XConstantTypeDescription.hpp" #include <com/sun/star/reflection/XConstantTypeDescription.hpp>
#include "com/sun/star/reflection/XConstantsTypeDescription.hpp" #include <com/sun/star/reflection/XConstantsTypeDescription.hpp>
#include "com/sun/star/reflection/XEnumTypeDescription.hpp" #include <com/sun/star/reflection/XEnumTypeDescription.hpp>
#include "com/sun/star/reflection/XIndirectTypeDescription.hpp" #include <com/sun/star/reflection/XIndirectTypeDescription.hpp>
#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp" #include <com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp>
#include "com/sun/star/reflection/XInterfaceMethodTypeDescription.hpp" #include <com/sun/star/reflection/XInterfaceMethodTypeDescription.hpp>
#include "com/sun/star/reflection/XInterfaceTypeDescription2.hpp" #include <com/sun/star/reflection/XInterfaceTypeDescription2.hpp>
#include "com/sun/star/reflection/XModuleTypeDescription.hpp" #include <com/sun/star/reflection/XModuleTypeDescription.hpp>
#include "com/sun/star/reflection/XPublished.hpp" #include <com/sun/star/reflection/XPublished.hpp>
#include "com/sun/star/reflection/XServiceTypeDescription2.hpp" #include <com/sun/star/reflection/XServiceTypeDescription2.hpp>
#include "com/sun/star/reflection/XSingletonTypeDescription2.hpp" #include <com/sun/star/reflection/XSingletonTypeDescription2.hpp>
#include "com/sun/star/reflection/XStructTypeDescription.hpp" #include <com/sun/star/reflection/XStructTypeDescription.hpp>
#include "com/sun/star/reflection/XTypeDescription.hpp" #include <com/sun/star/reflection/XTypeDescription.hpp>
#include "com/sun/star/uno/Any.hxx" #include <com/sun/star/uno/Any.hxx>
#include "com/sun/star/uno/DeploymentException.hpp" #include <com/sun/star/uno/DeploymentException.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "com/sun/star/uno/Type.hxx" #include <com/sun/star/uno/Type.hxx>
#include "com/sun/star/uno/TypeClass.hpp" #include <com/sun/star/uno/TypeClass.hpp>
#include "cppu/unotype.hxx" #include <cppu/unotype.hxx>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/supportsservice.hxx" #include <cppuhelper/supportsservice.hxx>
#include "osl/file.hxx" #include <osl/file.hxx>
#include "osl/mutex.hxx" #include <osl/mutex.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "rtl/string.h" #include <rtl/string.h>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/macros.h" #include <sal/macros.h>
#include "sal/types.h" #include <sal/types.h>
using rtl::OUString; using rtl::OUString;
#include "unoidl/unoidl.hxx" #include <unoidl/unoidl.hxx>
#include "paths.hxx" #include "paths.hxx"
#include "typemanager.hxx" #include "typemanager.hxx"

View File

@@ -10,25 +10,25 @@
#ifndef INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX #ifndef INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX
#define INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX #define INCLUDED_CPPUHELPER_SOURCE_TYPEMANAGER_HXX
#include "sal/config.h" #include <sal/config.h>
#include "com/sun/star/container/ElementExistException.hpp" #include <com/sun/star/container/ElementExistException.hpp>
#include "com/sun/star/container/NoSuchElementException.hpp" #include <com/sun/star/container/NoSuchElementException.hpp>
#include "com/sun/star/container/XHierarchicalNameAccess.hpp" #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
#include "com/sun/star/container/XSet.hpp" #include <com/sun/star/container/XSet.hpp>
#include "com/sun/star/lang/IllegalArgumentException.hpp" #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include "com/sun/star/lang/XServiceInfo.hpp" #include <com/sun/star/lang/XServiceInfo.hpp>
#include "com/sun/star/reflection/InvalidTypeNameException.hpp" #include <com/sun/star/reflection/InvalidTypeNameException.hpp>
#include "com/sun/star/reflection/NoSuchTypeNameException.hpp" #include <com/sun/star/reflection/NoSuchTypeNameException.hpp>
#include "com/sun/star/reflection/TypeDescriptionSearchDepth.hpp" #include <com/sun/star/reflection/TypeDescriptionSearchDepth.hpp>
#include "com/sun/star/reflection/XTypeDescriptionEnumerationAccess.hpp" #include <com/sun/star/reflection/XTypeDescriptionEnumerationAccess.hpp>
#include "com/sun/star/uno/Reference.hxx" #include <com/sun/star/uno/Reference.hxx>
#include "com/sun/star/uno/RuntimeException.hpp" #include <com/sun/star/uno/RuntimeException.hpp>
#include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Sequence.hxx>
#include "cppuhelper/basemutex.hxx" #include <cppuhelper/basemutex.hxx>
#include "cppuhelper/compbase4.hxx" #include <cppuhelper/compbase4.hxx>
#include "rtl/ref.hxx" #include <rtl/ref.hxx>
#include "sal/types.h" #include <sal/types.h>
namespace com { namespace sun { namespace star { namespace com { namespace sun { namespace star {
namespace uno { class Any; } namespace uno { class Any; }

View File

@@ -18,17 +18,17 @@
*/ */
#include "cppuhelper/unourl.hxx" #include <cppuhelper/unourl.hxx>
#include "osl/diagnose.h" #include <osl/diagnose.h>
#include "rtl/malformeduriexception.hxx" #include <rtl/malformeduriexception.hxx>
#include "rtl/string.h" #include <rtl/string.h>
#include "rtl/textenc.h" #include <rtl/textenc.h>
#include "rtl/uri.h" #include <rtl/uri.h>
#include "rtl/uri.hxx" #include <rtl/uri.hxx>
#include "rtl/ustring.h" #include <rtl/ustring.h>
#include "rtl/ustring.hxx" #include <rtl/ustring.hxx>
#include "sal/types.h" #include <sal/types.h>
#include <map> #include <map>

View File

@@ -23,7 +23,7 @@
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include <cppuhelper/weakagg.hxx> #include <cppuhelper/weakagg.hxx>
#include <cppuhelper/interfacecontainer.hxx> #include <cppuhelper/interfacecontainer.hxx>
#include "cppuhelper/exc_hlp.hxx" #include <cppuhelper/exc_hlp.hxx>
using namespace osl; using namespace osl;
using namespace com::sun::star::uno; using namespace com::sun::star::uno;

View File

@@ -18,10 +18,10 @@
*/ */
#include "cppu/EnvDcp.hxx" #include <cppu/EnvDcp.hxx>
#include "cppu/helper/purpenv/Environment.hxx" #include <cppu/helper/purpenv/Environment.hxx>
#include "cppu/helper/purpenv/Mapping.hxx" #include <cppu/helper/purpenv/Mapping.hxx>

View File

@@ -18,20 +18,20 @@
*/ */
#include "sal/main.h" #include <sal/main.h>
#include "osl/file.hxx" #include <osl/file.hxx>
#include "typelib/typedescription.hxx" #include <typelib/typedescription.hxx>
#include "cppuhelper/bootstrap.hxx" #include <cppuhelper/bootstrap.hxx>
#include "cppuhelper/shlib.hxx" #include <cppuhelper/shlib.hxx>
#include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XComponent.hpp>
#include "uno/environment.hxx" #include <uno/environment.hxx>
#include <uno/lbnames.h> #include <uno/lbnames.h>
#include "cppu/EnvDcp.hxx" #include <cppu/EnvDcp.hxx>
#include "cppu/EnvGuards.hxx" #include <cppu/EnvGuards.hxx>
#include <iostream> #include <iostream>

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 .
*/ */
#include "sal/main.h" #include <sal/main.h>
#include <cppuhelper/shlib.hxx> #include <cppuhelper/shlib.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppu/EnvDcp.hxx> #include <cppu/EnvDcp.hxx>

View File

@@ -25,19 +25,19 @@
#include <string.h> #include <string.h>
#include "osl/thread.h" #include <osl/thread.h>
#include "cppuhelper/implbase1.hxx" #include <cppuhelper/implbase1.hxx>
#include "cppuhelper/implementationentry.hxx" #include <cppuhelper/implementationentry.hxx>
#include "cppuhelper/supportsservice.hxx" #include <cppuhelper/supportsservice.hxx>
#include "com/sun/star/lang/XMultiComponentFactory.hpp" #include <com/sun/star/lang/XMultiComponentFactory.hpp>
#include "com/sun/star/lang/XServiceInfo.hpp" #include <com/sun/star/lang/XServiceInfo.hpp>
#include "com/sun/star/uno/XComponentContext.hpp" #include <com/sun/star/uno/XComponentContext.hpp>
#include "cppu/EnvDcp.hxx" #include <cppu/EnvDcp.hxx>
#include <uno/environment.hxx> #include <uno/environment.hxx>
#include <uno/lbnames.h> #include <uno/lbnames.h>