/* -*- 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/. */ #ifndef INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX #define INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX #include #include #include #include #include #include #include #include namespace comphelper { /// Init list for property sequences. inline css::uno::Sequence< css::beans::PropertyValue > InitPropertySequence( ::std::initializer_list< ::std::pair< OUString, css::uno::Any > > vInit) { css::uno::Sequence< css::beans::PropertyValue> vResult{static_cast(vInit.size())}; std::transform(vInit.begin(), vInit.end(), vResult.getArray(), [](const std::pair& rInit) { return css::beans::PropertyValue(rInit.first, -1, rInit.second, css::beans::PropertyState_DIRECT_VALUE); }); return vResult; } /// Init list for property sequences that wrap the PropertyValues in Anys. /// /// This is particularly useful for creation of sequences that are later /// unwrapped using comphelper::SequenceAsHashMap. inline css::uno::Sequence< css::uno::Any > InitAnyPropertySequence( ::std::initializer_list< ::std::pair< OUString, css::uno::Any > > vInit) { css::uno::Sequence vResult{static_cast(vInit.size())}; std::transform(vInit.begin(), vInit.end(), vResult.getArray(), [](const std::pair& rInit) { return css::uno::Any( css::beans::PropertyValue(rInit.first, -1, rInit.second, css::beans::PropertyState_DIRECT_VALUE)); }); return vResult; } COMPHELPER_DLLPUBLIC std::vector JsonToPropertyValues(const OString& rJson); } // namespace comphelper #endif // INCLUDED_COMPHELPER_PROPERTYSEQUENCE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ stflight LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2023-12-31 12:30:06 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-12-31 17:42:15 +0100
commit10ef920e9d2647eb0f6a8565bff21f463ca0cd88 (patch)
treeb2a40af6beb3f9774436e2231a68caf13e924de9 /external/libwpd/inc/pch
parentd6b1e5631ef936479cec6a3e5496e447c78279a7 (diff)
Replace "size() != 0 with !empty()" (vcl)
Change-Id: I33fae6ec7d73cf126d49d384a26b19c68cc68b30 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161490 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'external/libwpd/inc/pch')
0 files changed, 0 insertions, 0 deletions