/* -*- 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/. */ #pragma once #include #include #include #include #include #include #include #include namespace comphelper { typedef std::vector> IndexedPropertyValues; class COMPHELPER_DLLPUBLIC IndexedPropertyValuesContainer final : public cppu::WeakImplHelper { public: IndexedPropertyValuesContainer() noexcept; // XIndexContainer virtual void SAL_CALL insertByIndex(sal_Int32 nIndex, const css::uno::Any& aElement) override; virtual void SAL_CALL removeByIndex(sal_Int32 nIndex) override; // XIndexReplace virtual void SAL_CALL replaceByIndex(sal_Int32 nIndex, const css::uno::Any& aElement) override; // XIndexAccess virtual sal_Int32 SAL_CALL getCount() override; virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 nIndex) override; // XElementAccess virtual css::uno::Type SAL_CALL getElementType() override; virtual sal_Bool SAL_CALL hasElements() override; //XServiceInfo virtual OUString SAL_CALL getImplementationName() override; virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() override; private: IndexedPropertyValues maProperties; }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -4'>distro/cib/libreoffice-6-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-10-12loplugin:moveparam in variousNoel Grandin
2021-09-15Use <comphelper/servicehelper.hxx> implementing XUnoTunnel part 5Mike Kaganski
2021-09-15Use <comphelper/servicehelper.hxx> implementing XUnoTunnel part 4Mike Kaganski
2021-09-15Use <comphelper/servicehelper.hxx> implementing XUnoTunnel part 1Mike Kaganski
2021-05-02throw() -> noexcept, part 2/3: Automatic loplugin:noexcept rewriteStephan Bergmann
2021-04-19Updated README.md filesHossein
2021-04-07Updated README.md files to represent current code / use Markdown formatHossein
2021-04-07rtl::Static -> function local staticNoel Grandin
2021-03-24Using .md extension/Markdown syntax for modules READMEHossein
2021-03-21animcore : AnimationNode should be finalArnaud Versini
2021-01-27PPTX filter: fix lost is-narration property for slide narrationsMiklos Vajna
2021-01-26[API CHANGE] PPTX filter: fix lost hide-while-show prop for slide narrationsMiklos Vajna
2021-01-20improve some IllegalArgumentException messagesNoel
2020-11-05tdf#42949 Fix new IWYU warnings in directories [ab]*Gabor Kelemen
2020-08-31add missing initializers about physics animations to AnimationNode classSarper Akdemir
2020-08-22add bounciness velocity and density options to physics animationsSarper Akdemir
2020-08-20make physics based animation effects importable-exportableSarper Akdemir
2020-04-18loplugin:flatten in accessibilityNoel Grandin
2019-11-22Extend loplugin:external to warn about classesStephan Bergmann
2019-08-23tdf#39593 extract UnoTunnelId comparison to template functionArkadiy Illarionov
2019-07-31Improved loplugin:stringconstant (now that GCC 7 supports it): animationsStephan Bergmann
2019-05-23tdf#42949 Fix IWYU warnings in: animations/ eventattacher/ i18nutil/Gabor Kelemen