bump product version to 5.0.4.1
[LibreOffice.git] / basctl / source / basicide / register.cxx
blobdf819c33680db6361f43a07db984064244a8d02e
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 <com/sun/star/lang/XServiceInfo.hpp>
22 #include <cppuhelper/factory.hxx>
24 #include "unomodel.hxx"
26 namespace basctl
29 using namespace ::com::sun::star;
30 using namespace ::com::sun::star::uno;
31 using namespace ::com::sun::star::lang;
33 extern "C" {
35 SAL_DLLPUBLIC_EXPORT void* SAL_CALL basctl_component_getFactory( const sal_Char* pImplementationName,
36 void* pServiceManager,
37 void* pRegistryKey )
39 (void)pRegistryKey;
41 // Set default return value for this operation - if it failed.
42 void* pReturn = NULL ;
44 if (
45 ( pImplementationName != NULL ) &&
46 ( pServiceManager != NULL )
49 // Define variables which are used in following macros.
50 Reference< XSingleServiceFactory > xFactory ;
51 Reference< XMultiServiceFactory > xServiceManager( static_cast< XMultiServiceFactory* >( pServiceManager ) ) ;
53 if( SIDEModel::getImplementationName_Static().equalsAscii( pImplementationName ) )
55 xFactory = ::cppu::createSingleFactory( xServiceManager,
56 SIDEModel::getImplementationName_Static(),
57 SIDEModel_createInstance,
58 SIDEModel::getSupportedServiceNames_Static() );
61 // Factory is valid - service was found.
62 if ( xFactory.is() )
64 xFactory->acquire();
65 pReturn = xFactory.get();
69 // Return with result of this operation.
70 return pReturn ;
73 } // extern "C"
75 } // namespace basctl
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */