diff options
Diffstat (limited to 'include/comphelper/propertysequence.hxx')
-rw-r--r-- | include/comphelper/propertysequence.hxx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/comphelper/propertysequence.hxx b/include/comphelper/propertysequence.hxx index 28561a6904d7..6af3bb389929 100644 --- a/include/comphelper/propertysequence.hxx +++ b/include/comphelper/propertysequence.hxx @@ -14,10 +14,12 @@ #include <initializer_list> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/PropertyValue.hpp> 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) { @@ -33,6 +35,23 @@ namespace comphelper } return vResult; } + + /// Init list for property sequences that wrap the NamedValues in Anys. + /// + /// This is particularly useful for creation of sequences that are later + /// unwrapped using comphelper::SequenceAsHashMap. + inline css::uno::Sequence< css::uno::Any > InitAnySequence( + ::std::initializer_list< ::std::pair< OUString, css::uno::Any > > vInit) + { + css::uno::Sequence<css::uno::Any> vResult{static_cast<sal_Int32>(vInit.size())}; + size_t nCount{0}; + for(const auto& aEntry : vInit) + { + vResult[nCount] <<= css::beans::NamedValue(aEntry.first, aEntry.second); + ++nCount; + } + return vResult; + } } // namespace comphelper |