diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/propertysequence.hxx | 6 |
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 |