Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / xmlsecurity / source / xmlsec / xmlelementwrapper_xmlsecimpl.cxx
blob01f8df70230c3ef014ee63af553bac263ef96da7
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 <string.h>
22 #include "xmlelementwrapper_xmlsecimpl.hxx"
23 #include <comphelper/servicehelper.hxx>
24 #include <cppuhelper/supportsservice.hxx>
25 #include <cppuhelper/typeprovider.hxx>
27 namespace com::sun::star::uno { class XComponentContext; }
29 using namespace com::sun::star;
31 XMLElementWrapper_XmlSecImpl::XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode)
32 : m_pElement( pNode )
36 /* XUnoTunnel */
37 uno::Sequence< sal_Int8 > XMLElementWrapper_XmlSecImpl::getUnoTunnelId()
39 static ::cppu::OImplementationId implId;
41 return implId.getImplementationId();
44 sal_Int64 SAL_CALL XMLElementWrapper_XmlSecImpl::getSomething( const uno::Sequence< sal_Int8 >& aIdentifier )
46 if (isUnoTunnelId<XMLElementWrapper_XmlSecImpl>(aIdentifier))
48 return reinterpret_cast < sal_Int64 > ( this );
51 return 0;
54 /* XServiceInfo */
55 OUString SAL_CALL XMLElementWrapper_XmlSecImpl::getImplementationName( )
57 return "com.sun.star.xml.wrapper.XMLElementWrapper";
60 sal_Bool SAL_CALL XMLElementWrapper_XmlSecImpl::supportsService( const OUString& rServiceName )
62 return cppu::supportsService( this, rServiceName );
65 uno::Sequence< OUString > SAL_CALL XMLElementWrapper_XmlSecImpl::getSupportedServiceNames( )
67 uno::Sequence<OUString> aRet { "com.sun.star.xml.wrapper.XMLElementWrapper" };
68 return aRet;
71 extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
72 com_sun_star_xml_wrapper_XMLElementWrapper_get_implementation(
73 uno::XComponentContext* /*pCtx*/, uno::Sequence<uno::Any> const& /*rSeq*/)
75 return cppu::acquire(new XMLElementWrapper_XmlSecImpl(nullptr));
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */