/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #pragma once #include "TransformerContext.hxx" class XMLFrameOASISTransformerContext : public XMLTransformerContext { css::uno::Reference< css::xml::sax::XAttributeList > m_xAttrList; OUString m_aElemQName; bool m_bIgnoreElement; bool IsLinkedEmbeddedObject( std::u16string_view rLocalName, const css::uno::Reference< css::xml::sax::XAttributeList >& rAttrList ); public: XMLFrameOASISTransformerContext( XMLTransformerBase& rTransformer, const OUString& rQName ); virtual ~XMLFrameOASISTransformerContext() override; virtual rtl::Reference CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const OUString& rQName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void StartElement( const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList ) override; virtual void EndElement() override; virtual void Characters( const OUString& rChars ) override; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ value='distro/collabora/cd-5.3'>distro/collabora/cd-5.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/chart2/source/inc/ModifyListenerHelper.hxx
AgeCommit message (Expand)Author
2017-09-01Replace list by vector for tListenerMap (chart2)Julien Nabet
2017-07-03use begin()/end() when working with SequenceNoel Grandin
2017-07-03C++11 remove std::unary_function bases from functorsJochen Nitschke
2017-02-15Drop :: prefix from std in c*/Tor Lillqvist
2017-01-26Remove dynamic exception specificationsStephan Bergmann
2016-11-11loplugin:expandablemethods in chart2Noel Grandin
2016-03-14com::sun::star->css in chart2Noel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2015-07-17tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe