Bump version to 5.0-14
[LibreOffice.git] / xmlsecurity / source / xmlsec / xmlelementwrapper_xmlsecimpl.hxx
blob4ecaf789b7b3765dc5d48bd3ea3b455b884a1e78
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 #ifndef INCLUDED_XMLSECURITY_SOURCE_XMLSEC_XMLELEMENTWRAPPER_XMLSECIMPL_HXX
21 #define INCLUDED_XMLSECURITY_SOURCE_XMLSEC_XMLELEMENTWRAPPER_XMLSECIMPL_HXX
23 #include <com/sun/star/xml/wrapper/XXMLElementWrapper.hpp>
24 #include <com/sun/star/lang/XUnoTunnel.hpp>
25 #include <com/sun/star/lang/XInitialization.hpp>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <cppuhelper/implbase3.hxx>
29 #include <libxml/tree.h>
31 namespace com { namespace sun { namespace star { namespace uno {
32 class XComponentContext;
33 } } } }
35 class XMLElementWrapper_XmlSecImpl : public cppu::WeakImplHelper3
37 com::sun::star::xml::wrapper::XXMLElementWrapper,
38 com::sun::star::lang::XUnoTunnel,
39 com::sun::star::lang::XServiceInfo
41 /****** XMLElementWrapper_XmlSecImpl.hxx/CLASS XMLElementWrapper_XmlSecImpl ***
43 * NAME
44 * XMLElementWrapper_XmlSecImpl -- Class to wrap a libxml2 node
46 * FUNCTION
47 * Used as a wrapper class to transfer a libxml2 node structure
48 * between different UNO components.
50 * AUTHOR
51 * Michael Mi
52 * Email: michael.mi@sun.com
53 ******************************************************************************/
55 private:
56 /* the libxml2 node wrapped by this object */
57 xmlNodePtr m_pElement;
59 public:
60 explicit XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode);
61 virtual ~XMLElementWrapper_XmlSecImpl() {};
63 /* XXMLElementWrapper */
65 /* com::sun::star::lang::XUnoTunnel */
66 virtual sal_Int64 SAL_CALL getSomething( const com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier )
67 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
68 static com::sun::star::uno::Sequence < sal_Int8 > getUnoTunnelImplementationId()
69 throw(com::sun::star::uno::RuntimeException);
71 /* com::sun::star::lang::XServiceInfo */
72 virtual OUString SAL_CALL getImplementationName( )
73 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
74 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
75 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
76 virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
77 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
79 public:
81 * NAME
82 * getNativeElement -- Retrieves the libxml2 node wrapped by this object
84 * SYNOPSIS
85 * pNode = getNativeElement();
87 * RESULT
88 * pNode - the libxml2 node wrapped by this object
90 xmlNodePtr getNativeElement( ) const { return m_pElement;}
91 void setNativeElement(const xmlNodePtr pNode);
94 OUString XMLElementWrapper_XmlSecImpl_getImplementationName()
95 throw ( com::sun::star::uno::RuntimeException );
97 com::sun::star::uno::Sequence< OUString > SAL_CALL XMLElementWrapper_XmlSecImpl_getSupportedServiceNames( )
98 throw ( com::sun::star::uno::RuntimeException );
100 com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
101 SAL_CALL XMLElementWrapper_XmlSecImpl_createInstance(
102 const com::sun::star::uno::Reference<
103 com::sun::star::uno::XComponentContext > &)
104 throw ( com::sun::star::uno::Exception );
106 #endif
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */