diff options
Diffstat (limited to 'stoc/inc')
-rw-r--r-- | stoc/inc/bootstrapservices.hxx | 114 | ||||
-rw-r--r-- | stoc/inc/makefile.mk | 51 | ||||
-rw-r--r-- | stoc/inc/pch/precompiled_stoc.cxx | 32 | ||||
-rw-r--r-- | stoc/inc/pch/precompiled_stoc.hxx | 292 | ||||
-rw-r--r-- | stoc/inc/stocservices.hxx | 97 |
5 files changed, 586 insertions, 0 deletions
diff --git a/stoc/inc/bootstrapservices.hxx b/stoc/inc/bootstrapservices.hxx new file mode 100644 index 000000000000..4faa0aa2fb14 --- /dev/null +++ b/stoc/inc/bootstrapservices.hxx @@ -0,0 +1,114 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: bootstrapservices.hxx,v $ + * $Revision: 1.3 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_stoc.hxx" + +#include <rtl/ustring.hxx> +#include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> + +namespace com { namespace sun { namespace star { namespace uno { + class XInterface; + class XComponentContext; +} } } } + +namespace stoc_bootstrap +{ + //servicemanager + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL OServiceManager_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > smgr_wrapper_getSupportedServiceNames(); + ::rtl::OUString smgr_wrapper_getImplementationName(); + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL OServiceManagerWrapper_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext ) + throw (::com::sun::star::uno::Exception); + ::com::sun::star::uno::Sequence< ::rtl::OUString > smgr_getSupportedServiceNames(); + ::rtl::OUString smgr_getImplementationName(); + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ORegistryServiceManager_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext ) + throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException); + ::com::sun::star::uno::Sequence< ::rtl::OUString > regsmgr_getSupportedServiceNames(); + ::rtl::OUString regsmgr_getImplementationName(); + + //security + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ac_create( + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xComponentContext ) + SAL_THROW( (::com::sun::star::uno::Exception) ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > ac_getSupportedServiceNames() SAL_THROW( () ); + ::rtl::OUString ac_getImplementationName() SAL_THROW( () ); + + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL filepolicy_create( + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xComponentContext ) + SAL_THROW( (com::sun::star::uno::Exception) ); + ::com::sun::star::uno::Sequence< rtl::OUString > filepolicy_getSupportedServiceNames() SAL_THROW( () ); + ::rtl::OUString filepolicy_getImplementationName() SAL_THROW( () ); + + //defaultregistry + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL NestedRegistry_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ) + throw( ::com::sun::star::uno::Exception); + ::com::sun::star::uno::Sequence< ::rtl::OUString > defreg_getSupportedServiceNames(); + ::rtl::OUString defreg_getImplementationName(); + + //simpleregistry + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL SimpleRegistry_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > simreg_getSupportedServiceNames(); + ::rtl::OUString simreg_getImplementationName(); + + //implementationregistry + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ImplementationRegistration_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ); // throw(Exception) + ::com::sun::star::uno::Sequence< ::rtl::OUString > impreg_getSupportedServiceNames(); + ::rtl::OUString impreg_getImplementationName(); + + //loader + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL DllComponentLoader_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ) + throw(::com::sun::star::uno::Exception); + ::com::sun::star::uno::Sequence< ::rtl::OUString > loader_getSupportedServiceNames(); + ::rtl::OUString loader_getImplementationName(); + + //registry_tdprovider + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ProviderImpl_create( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ) + throw(::com::sun::star::uno::Exception); + ::com::sun::star::uno::Sequence< ::rtl::OUString > rdbtdp_getSupportedServiceNames(); + ::rtl::OUString rdbtdp_getImplementationName(); + + //tdmanager + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL ManagerImpl_create( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& ) + SAL_THROW( (::com::sun::star::uno::Exception) ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL tdmgr_getSupportedServiceNames(); + ::rtl::OUString SAL_CALL tdmgr_getImplementationName(); +} // namespace diff --git a/stoc/inc/makefile.mk b/stoc/inc/makefile.mk new file mode 100644 index 000000000000..790594ea72c8 --- /dev/null +++ b/stoc/inc/makefile.mk @@ -0,0 +1,51 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2008 by Sun Microsystems, Inc. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.3 $ +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* +PRJ=.. + +PRJNAME=stoc +TARGET=inc + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + +# --- Files -------------------------------------------------------- +# --- Targets ------------------------------------------------------- + +.INCLUDE : target.mk + +.IF "$(ENABLE_PCH)"!="" +ALLTAR : \ + $(SLO)$/precompiled.pch \ + $(SLO)$/precompiled_ex.pch + +.ENDIF # "$(ENABLE_PCH)"!="" + diff --git a/stoc/inc/pch/precompiled_stoc.cxx b/stoc/inc/pch/precompiled_stoc.cxx new file mode 100644 index 000000000000..9812fb35fbc4 --- /dev/null +++ b/stoc/inc/pch/precompiled_stoc.cxx @@ -0,0 +1,32 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: precompiled_stoc.cxx,v $ + * $Revision: 1.3 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#include "precompiled_stoc.hxx" + diff --git a/stoc/inc/pch/precompiled_stoc.hxx b/stoc/inc/pch/precompiled_stoc.hxx new file mode 100644 index 000000000000..15069554c69e --- /dev/null +++ b/stoc/inc/pch/precompiled_stoc.hxx @@ -0,0 +1,292 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: precompiled_stoc.hxx,v $ + * $Revision: 1.4 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +// MARKER(update_precomp.py): Generated on 2006-09-01 17:50:03.092339 + +// breaks some builds (e.g. pyuno and i18npool on Mac OS X) +#if 0 +#ifdef PRECOMPILED_HEADERS +//---MARKER--- +#include "sal/alloca.h" +#include "sal/config.h" +#include "sal/main.h" +#include "sal/types.h" + +#include "boost/scoped_array.hpp" + +#include "com/sun/star/beans/IllegalTypeException.hpp" +#include "com/sun/star/beans/MethodConcept.hpp" +#include "com/sun/star/beans/NamedValue.hpp" +#include "com/sun/star/beans/Property.hpp" +#include "com/sun/star/beans/PropertyAttribute.hpp" +#include "com/sun/star/beans/PropertyChangeEvent.hpp" +#include "com/sun/star/beans/PropertyConcept.hpp" +#include "com/sun/star/beans/PropertyState.hpp" +#include "com/sun/star/beans/PropertyValue.hpp" +#include "com/sun/star/beans/PropertyVetoException.hpp" +#include "com/sun/star/beans/UnknownPropertyException.hpp" +#include "com/sun/star/beans/XExactName.hpp" +#include "com/sun/star/beans/XFastPropertySet.hpp" +#include "com/sun/star/beans/XIntrospection.hpp" +#include "com/sun/star/beans/XIntrospectionAccess.hpp" +#include "com/sun/star/beans/XMaterialHolder.hpp" +#include "com/sun/star/beans/XPropertyChangeListener.hpp" +#include "com/sun/star/beans/XPropertySet.hpp" +#include "com/sun/star/beans/XPropertySetInfo.hpp" +#include "com/sun/star/beans/XVetoableChangeListener.hpp" +#include "com/sun/star/connection/SocketPermission.hpp" +#include "com/sun/star/container/ContainerEvent.hpp" +#include "com/sun/star/container/ElementExistException.hpp" +#include "com/sun/star/container/NoSuchElementException.hpp" +#include "com/sun/star/container/XContainer.hpp" +#include "com/sun/star/container/XContainerListener.hpp" +#include "com/sun/star/container/XContentEnumerationAccess.hpp" +#include "com/sun/star/container/XElementAccess.hpp" +#include "com/sun/star/container/XEnumeration.hpp" +#include "com/sun/star/container/XEnumerationAccess.hpp" +#include "com/sun/star/container/XHierarchicalNameAccess.hpp" +#include "com/sun/star/container/XIndexAccess.hpp" +#include "com/sun/star/container/XIndexContainer.hpp" +#include "com/sun/star/container/XIndexReplace.hpp" +#include "com/sun/star/container/XNameAccess.hpp" +#include "com/sun/star/container/XNameContainer.hpp" +#include "com/sun/star/container/XNameReplace.hpp" +#include "com/sun/star/container/XSet.hpp" +#include "com/sun/star/io/FilePermission.hpp" +#include "com/sun/star/java/InvalidJavaSettingsException.hpp" +#include "com/sun/star/java/JavaDisabledException.hpp" +#include "com/sun/star/java/JavaInitializationException.hpp" +#include "com/sun/star/java/JavaNotConfiguredException.hpp" +#include "com/sun/star/java/JavaNotFoundException.hpp" +#include "com/sun/star/java/JavaVMCreationFailureException.hpp" +#include "com/sun/star/java/MissingJavaRuntimeException.hpp" +#include "com/sun/star/java/RestartRequiredException.hpp" +#include "com/sun/star/java/XJavaThreadRegister_11.hpp" +#include "com/sun/star/java/XJavaVM.hpp" +#include "com/sun/star/lang/ArrayIndexOutOfBoundsException.hpp" +#include "com/sun/star/lang/DisposedException.hpp" +#include "com/sun/star/lang/EventObject.hpp" +#include "com/sun/star/lang/IllegalAccessException.hpp" +#include "com/sun/star/lang/IllegalArgumentException.hpp" +#include "com/sun/star/lang/IndexOutOfBoundsException.hpp" +#include "com/sun/star/lang/NoSuchMethodException.hpp" +#include "com/sun/star/lang/WrappedTargetException.hpp" +#include "com/sun/star/lang/WrappedTargetRuntimeException.hpp" +#include "com/sun/star/lang/XComponent.hpp" +#include "com/sun/star/lang/XEventListener.hpp" +#include "com/sun/star/lang/XInitialization.hpp" +#include "com/sun/star/lang/XMain.hpp" +#include "com/sun/star/lang/XMultiComponentFactory.hpp" +#include "com/sun/star/lang/XMultiServiceFactory.hpp" +#include "com/sun/star/lang/XServiceInfo.hpp" +#include "com/sun/star/lang/XSingleComponentFactory.hpp" +#include "com/sun/star/lang/XSingleServiceFactory.hpp" +#include "com/sun/star/lang/XTypeProvider.hpp" +#include "com/sun/star/lang/XUnoTunnel.hpp" +#include "com/sun/star/loader/CannotActivateFactoryException.hpp" +#include "com/sun/star/loader/XImplementationLoader.hpp" +#include "com/sun/star/reflection/FieldAccessMode.hpp" +#include "com/sun/star/reflection/InvalidTypeNameException.hpp" +#include "com/sun/star/reflection/InvocationTargetException.hpp" +#include "com/sun/star/reflection/MethodMode.hpp" +#include "com/sun/star/reflection/NoSuchTypeNameException.hpp" +#include "com/sun/star/reflection/ParamInfo.hpp" +#include "com/sun/star/reflection/ParamMode.hpp" +#include "com/sun/star/reflection/TypeDescriptionSearchDepth.hpp" +#include "com/sun/star/reflection/XArrayTypeDescription.hpp" +#include "com/sun/star/reflection/XCompoundTypeDescription.hpp" +#include "com/sun/star/reflection/XConstantTypeDescription.hpp" +#include "com/sun/star/reflection/XConstantsTypeDescription.hpp" +#include "com/sun/star/reflection/XEnumTypeDescription.hpp" +#include "com/sun/star/reflection/XIdlArray.hpp" +#include "com/sun/star/reflection/XIdlClass.hpp" +#include "com/sun/star/reflection/XIdlClassProvider.hpp" +#include "com/sun/star/reflection/XIdlField.hpp" +#include "com/sun/star/reflection/XIdlField2.hpp" +#include "com/sun/star/reflection/XIdlMember.hpp" +#include "com/sun/star/reflection/XIdlMethod.hpp" +#include "com/sun/star/reflection/XIdlReflection.hpp" +#include "com/sun/star/reflection/XIndirectTypeDescription.hpp" +#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription.hpp" +#include "com/sun/star/reflection/XInterfaceAttributeTypeDescription2.hpp" +#include "com/sun/star/reflection/XInterfaceMemberTypeDescription.hpp" +#include "com/sun/star/reflection/XInterfaceMethodTypeDescription.hpp" +#include "com/sun/star/reflection/XInterfaceTypeDescription.hpp" +#include "com/sun/star/reflection/XInterfaceTypeDescription2.hpp" +#include "com/sun/star/reflection/XMethodParameter.hpp" +#include "com/sun/star/reflection/XModuleTypeDescription.hpp" +#include "com/sun/star/reflection/XParameter.hpp" +#include "com/sun/star/reflection/XPropertyTypeDescription.hpp" +#include "com/sun/star/reflection/XProxyFactory.hpp" +#include "com/sun/star/reflection/XPublished.hpp" +#include "com/sun/star/reflection/XServiceConstructorDescription.hpp" +#include "com/sun/star/reflection/XServiceTypeDescription.hpp" +#include "com/sun/star/reflection/XServiceTypeDescription2.hpp" +#include "com/sun/star/reflection/XSingletonTypeDescription.hpp" +#include "com/sun/star/reflection/XSingletonTypeDescription2.hpp" +#include "com/sun/star/reflection/XStructTypeDescription.hpp" +#include "com/sun/star/reflection/XTypeDescription.hpp" +#include "com/sun/star/reflection/XTypeDescriptionEnumeration.hpp" +#include "com/sun/star/reflection/XTypeDescriptionEnumerationAccess.hpp" +#include "com/sun/star/registry/CannotRegisterImplementationException.hpp" +#include "com/sun/star/registry/InvalidRegistryException.hpp" +#include "com/sun/star/registry/InvalidValueException.hpp" +#include "com/sun/star/registry/MergeConflictException.hpp" +#include "com/sun/star/registry/RegistryKeyType.hpp" +#include "com/sun/star/registry/RegistryValueType.hpp" +#include "com/sun/star/registry/XImplementationRegistration.hpp" +#include "com/sun/star/registry/XRegistryKey.hpp" +#include "com/sun/star/registry/XSimpleRegistry.hpp" +#include "com/sun/star/script/CannotConvertException.hpp" +#include "com/sun/star/script/FailReason.hpp" +#include "com/sun/star/script/InvocationInfo.hpp" +#include "com/sun/star/script/MemberType.hpp" +#include "com/sun/star/script/XInvocation.hpp" +#include "com/sun/star/script/XInvocation2.hpp" +#include "com/sun/star/script/XInvocationAdapterFactory.hpp" +#include "com/sun/star/script/XInvocationAdapterFactory2.hpp" +#include "com/sun/star/script/XTypeConverter.hpp" +#include "com/sun/star/security/AccessControlException.hpp" +#include "com/sun/star/security/AllPermission.hpp" +#include "com/sun/star/security/RuntimePermission.hpp" +#include "com/sun/star/security/XAccessControlContext.hpp" +#include "com/sun/star/security/XAccessController.hpp" +#include "com/sun/star/security/XAction.hpp" +#include "com/sun/star/security/XPolicy.hpp" +#include "com/sun/star/task/XInteractionAbort.hpp" +#include "com/sun/star/task/XInteractionContinuation.hpp" +#include "com/sun/star/task/XInteractionHandler.hpp" +#include "com/sun/star/task/XInteractionRequest.hpp" +#include "com/sun/star/task/XInteractionRetry.hpp" +#include "com/sun/star/uno/Any.h" +#include "com/sun/star/uno/Any.hxx" +#include "com/sun/star/uno/DeploymentException.hpp" +#include "com/sun/star/uno/Exception.hpp" +#include "com/sun/star/uno/Reference.h" +#include "com/sun/star/uno/Reference.hxx" +#include "com/sun/star/uno/RuntimeException.hpp" +#include "com/sun/star/uno/SecurityException.hpp" +#include "com/sun/star/uno/Sequence.h" +#include "com/sun/star/uno/Sequence.hxx" +#include "com/sun/star/uno/Type.h" +#include "com/sun/star/uno/Type.hxx" +#include "com/sun/star/uno/TypeClass.hpp" +#include "com/sun/star/uno/Uik.hpp" +#include "com/sun/star/uno/XAdapter.hpp" +#include "com/sun/star/uno/XAggregation.hpp" +#include "com/sun/star/uno/XComponentContext.hpp" +#include "com/sun/star/uno/XCurrentContext.hpp" +#include "com/sun/star/uno/XInterface.hpp" +#include "com/sun/star/uno/XNamingService.hpp" +#include "com/sun/star/uno/XReference.hpp" +#include "com/sun/star/uno/XUnloadingPreference.hpp" +#include "com/sun/star/uri/RelativeUriExcessParentSegments.hpp" +#include "com/sun/star/uri/XExternalUriReferenceTranslator.hpp" +#include "com/sun/star/uri/XUriReference.hpp" +#include "com/sun/star/uri/XUriReferenceFactory.hpp" +#include "com/sun/star/uri/XUriSchemeParser.hpp" +#include "com/sun/star/uri/XVndSunStarPkgUrlReferenceFactory.hpp" +#include "com/sun/star/uri/XVndSunStarScriptUrlReference.hpp" +#include "com/sun/star/util/XMacroExpander.hpp" + +#include "cppu/macros.hxx" +#include "cppu/unotype.hxx" + +#include "cppuhelper/access_control.hxx" +#include "cppuhelper/bootstrap.hxx" +#include "cppuhelper/component_context.hxx" +#include "cppuhelper/exc_hlp.hxx" +#include "cppuhelper/factory.hxx" +#include "cppuhelper/implementationentry.hxx" +#include "cppuhelper/queryinterface.hxx" +#include "cppuhelper/servicefactory.hxx" +#include "cppuhelper/shlib.hxx" +#include "cppuhelper/typeprovider.hxx" +#include "cppuhelper/weak.hxx" +#include "cppuhelper/weakref.hxx" + + + + +#include "jvmfwk/framework.h" + +#include "osl/diagnose.h" +#include "osl/doublecheckedlocking.h" +#include "osl/file.h" +#include "osl/file.hxx" +#include "osl/interlck.h" +#include "osl/module.h" +#include "osl/module.hxx" +#include "osl/mutex.hxx" +#include "osl/process.h" +#include "osl/security.h" +#include "osl/socket.hxx" +#include "osl/thread.h" +#include "osl/thread.hxx" + +#include "registry/refltype.hxx" +#include "registry/registry.hxx" +#include "registry/types.h" +#include "registry/version.h" + +#include "rtl/alloc.h" +#include "rtl/bootstrap.hxx" +#include "rtl/byteseq.hxx" +#include "rtl/process.h" +#include "rtl/strbuf.hxx" +#include "rtl/string.h" +#include "rtl/string.hxx" +#include "rtl/textenc.h" +#include "rtl/unload.h" +#include "rtl/uri.h" +#include "rtl/ustrbuf.hxx" +#include "rtl/ustring.h" +#include "rtl/ustring.hxx" + +#include "salhelper/simplereferenceobject.hxx" + + +#include "typelib/typeclass.h" +#include "typelib/typedescription.h" +#include "typelib/typedescription.hxx" + +#include "uno/any2.h" +#include "uno/current_context.h" +#include "uno/current_context.hxx" +#include "uno/data.h" +#include "uno/dispatcher.h" +#include "uno/dispatcher.hxx" +#include "uno/environment.h" +#include "uno/environment.hxx" +#include "uno/lbnames.h" +#include "uno/mapping.hxx" +//---MARKER--- +#endif +#endif diff --git a/stoc/inc/stocservices.hxx b/stoc/inc/stocservices.hxx new file mode 100644 index 000000000000..24eb9a04358c --- /dev/null +++ b/stoc/inc/stocservices.hxx @@ -0,0 +1,97 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: stocservices.hxx,v $ + * $Revision: 1.3 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_stoc.hxx" + +#include <rtl/ustring.hxx> +#include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> + +namespace com { namespace sun { namespace star { namespace uno { + class XInterface; + class XComponentContext; +} } } } + +namespace stoc_services +{ + // typeconv + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL TypeConverter_Impl_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & ) + throw( ::com::sun::star::uno::RuntimeException ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > tcv_getSupportedServiceNames(); + ::rtl::OUString tcv_getImplementationName(); + + namespace ExternalUriReferenceTranslator + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriReferenceFactory + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriSchemeParser_vndDOTsunDOTstarDOTexpand + { + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL create( + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const &) + SAL_THROW((::com::sun::star::uno::Exception)); + ::rtl::OUString SAL_CALL getImplementationName(); + ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriSchemeParser_vndDOTsunDOTstarDOTscript + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const &) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace VndSunStarPkgUrlReferenceFactory + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } +} // namespace |