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/.
12 #include "transporttypes.hxx"
13 #include <xmloff/xmlictxt.hxx>
14 #include <xmloff/SchXMLImportHelper.hxx>
16 namespace com::sun::star
{
23 class SchXMLPropertyMappingContext
: public SvXMLImportContext
27 SchXMLPropertyMappingContext(
29 tSchXMLLSequencesPerIndex
& rLSequencesPerIndex
,
31 css::chart2::XDataSeries
> xSeries
);
33 virtual ~SchXMLPropertyMappingContext() override
;
35 virtual void SAL_CALL
startFastElement (sal_Int32 Element
,
36 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& Attribs
) override
;
39 css::uno::Reference
< css::chart2::XDataSeries
> mxDataSeries
;
41 tSchXMLLSequencesPerIndex
& mrLSequencesPerIndex
;
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */