Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / filter / xml / xmlmappingi.hxx
blobf84a35311f7c514c4638e6b61b5602e171ca4e0b
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/.
8 */
10 #ifndef INCLUDED_SC_SOURCE_FILTER_XML_XMLMAPPINGI_HXX
11 #define INCLUDED_SC_SOURCE_FILTER_XML_XMLMAPPINGI_HXX
13 #include "importcontext.hxx"
15 namespace sax_fastparser { class FastAttributeList; }
17 class ScXMLMappingsContext : public ScXMLImportContext
19 public:
21 ScXMLMappingsContext( ScXMLImport& rImport );
23 virtual ~ScXMLMappingsContext() override;
25 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
26 sal_Int32 nElement,
27 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
30 class ScXMLMappingContext : public ScXMLImportContext
33 public:
35 ScXMLMappingContext( ScXMLImport& rImport,
36 const rtl::Reference<sax_fastparser::FastAttributeList>& rAttrList );
38 virtual ~ScXMLMappingContext() override;
40 virtual css::uno::Reference<css::xml::sax::XFastContextHandler> SAL_CALL createFastChildContext(
41 sal_Int32 nElement,
42 const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList) override;
46 #endif
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */