1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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
21 ScXMLMappingsContext( ScXMLImport
& rImport
);
23 virtual ~ScXMLMappingsContext() override
;
25 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
27 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& xAttrList
) override
;
30 class ScXMLMappingContext
: public ScXMLImportContext
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(
42 const css::uno::Reference
<css::xml::sax::XFastAttributeList
>& xAttrList
) override
;
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */