Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #include <cppuhelper/factory.hxx>
30 : : #include <com/sun/star/container/XSet.hpp>
31 : : #include <osl/diagnose.h>
32 : : #include "cmdmailsuppl.hxx"
33 : :
34 : : //-----------------------------------------------------------------------
35 : : // namespace directives
36 : : //-----------------------------------------------------------------------
37 : :
38 : : using namespace ::rtl ;
39 : : using namespace ::com::sun::star::uno ;
40 : : using namespace ::com::sun::star::container ;
41 : : using namespace ::com::sun::star::lang ;
42 : : using namespace ::com::sun::star::registry ;
43 : : using namespace ::cppu ;
44 : : using com::sun::star::system::XSimpleMailClientSupplier;
45 : :
46 : : #define COMP_SERVICE_NAME "com.sun.star.system.SimpleCommandMail"
47 : : #define COMP_IMPL_NAME "com.sun.star.comp.system.SimpleCommandMail"
48 : :
49 : : //-----------------------------------------------------------------------
50 : :
51 : : namespace
52 : : {
53 : 0 : Reference< XInterface > SAL_CALL createInstance( const Reference< XComponentContext >& xContext )
54 : : {
55 : 0 : return Reference< XInterface >( static_cast< XSimpleMailClientSupplier* >( new CmdMailSuppl( xContext ) ) );
56 : : }
57 : : }
58 : :
59 : : extern "C"
60 : : {
61 : : //----------------------------------------------------------------------
62 : : // component_getFactory
63 : : //----------------------------------------------------------------------
64 : :
65 : 0 : SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
66 : : const sal_Char* pImplName,
67 : : SAL_UNUSED_PARAMETER uno_Interface* /*pSrvManager*/,
68 : : SAL_UNUSED_PARAMETER uno_Interface* /*pRegistryKey*/ )
69 : : {
70 : 0 : Reference< XSingleComponentFactory > xFactory;
71 : :
72 : 0 : if (0 == ::rtl_str_compare( pImplName, COMP_IMPL_NAME ))
73 : : {
74 : 0 : OUString serviceName( RTL_CONSTASCII_USTRINGPARAM(COMP_SERVICE_NAME) );
75 : :
76 : : xFactory = ::cppu::createSingleComponentFactory(
77 : : createInstance,
78 : : OUString( RTL_CONSTASCII_USTRINGPARAM(COMP_IMPL_NAME) ),
79 : 0 : Sequence< OUString >( &serviceName, 1 ) );
80 : : }
81 : :
82 : 0 : if (xFactory.is())
83 : 0 : xFactory->acquire();
84 : :
85 : 0 : return xFactory.get();
86 : : }
87 : :
88 : : } // extern "C"
89 : :
90 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|