bump product version to 4.1.6.2
[LibreOffice.git] / sw / source / ui / uno / detreg.cxx
blob9d6fd6ea451d22a1c28aa4d9cc41d2536725ffcc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "swdetect.hxx"
22 using namespace ::com::sun::star;
23 using namespace ::com::sun::star::uno;
24 using namespace ::com::sun::star::lang;
26 extern "C" {
28 SAL_DLLPUBLIC_EXPORT void* SAL_CALL swd_component_getFactory(
29 const sal_Char* pImplementationName,
30 void* pServiceManager,
31 void* /*pRegistryKey*/ )
33 // Set default return value for this operation - if it failed.
34 void* pReturn = NULL ;
36 if (
37 ( pImplementationName != NULL ) &&
38 ( pServiceManager != NULL )
41 // Define variables which are used in following macros.
42 Reference< XSingleServiceFactory > xFactory ;
43 Reference< XMultiServiceFactory > xServiceManager( reinterpret_cast< XMultiServiceFactory* >( pServiceManager ) ) ;
45 if( SwFilterDetect::impl_getStaticImplementationName().equalsAscii( pImplementationName ) )
47 xFactory = ::cppu::createSingleFactory( xServiceManager,
48 SwFilterDetect::impl_getStaticImplementationName(),
49 SwFilterDetect::impl_createInstance,
50 SwFilterDetect::impl_getStaticSupportedServiceNames() );
53 // Factory is valid - service was found.
54 if ( xFactory.is() )
56 xFactory->acquire();
57 pReturn = xFactory.get();
61 // Return with result of this operation.
62 return pReturn ;
64 } // extern "C"
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */