summaryrefslogtreecommitdiff
path: root/include/comphelper/propertysequence.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-01-20 21:02:35 +0100
committerMiklos Vajna <vmiklos@collabora.com>2022-01-21 08:51:01 +0100
commit4871cae48c1c9f522a0c0cc85a852b0568ca31e6 (patch)
treef4f98dc69c0ad28f9bfda7d85a315c4c62549f2d /include/comphelper/propertysequence.hxx
parentb438a4502d2b388012b0744374e86d1ff0543e8d (diff)
comphelper: move JsonToPropertyValues() from desktop/
Because filter/ code will need this in a bit, and that can't depend on desktop/. Change-Id: I07f0f8ef30942a2d11388c6721c7f277e117bfba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128709 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/comphelper/propertysequence.hxx')
-rw-r--r--include/comphelper/propertysequence.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/comphelper/propertysequence.hxx b/include/comphelper/propertysequence.hxx
index 2c143aa9ed7a..e788f56f428f 100644
--- a/include/comphelper/propertysequence.hxx
+++ b/include/comphelper/propertysequence.hxx
@@ -13,10 +13,14 @@
#include <utility>
#include <algorithm>
#include <initializer_list>
+#include <vector>
+
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/beans/PropertyValue.hpp>
+#include <comphelper/comphelperdllapi.h>
+
namespace comphelper
{
/// Init list for property sequences.
@@ -48,6 +52,8 @@ namespace comphelper
});
return vResult;
}
+
+ COMPHELPER_DLLPUBLIC std::vector<css::beans::PropertyValue> JsonToPropertyValues(const OString& rJson);
} // namespace comphelper