diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-16 18:15:21 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-16 18:36:41 +0200 |
commit | 142d63d01567b5c7e513258f2835dbde54b30012 (patch) | |
tree | 308ad9ddf04a70d4de94ba59f795e46601e7ef3b /include/oox | |
parent | a60d9aa7ce7d5c77798e7be1efce2afc05d97f85 (diff) |
oox: add a method to dump a PropertyMap as data
It was already possible to dump a PropertyMap as code, but not as data.
The plan here is that if we dump the customshape preset definitions as
data, then once there is a parser for it, we can get rid of the ugly
generated code.
Change-Id: If596941fedf71693e5d0bff436446ac0855c4c84
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/helper/propertymap.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/oox/helper/propertymap.hxx b/include/oox/helper/propertymap.hxx index 4b4f416809ab..5cd606b0745a 100644 --- a/include/oox/helper/propertymap.hxx +++ b/include/oox/helper/propertymap.hxx @@ -110,6 +110,8 @@ public: #endif static void dumpCode( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet); void dumpCode(); + static void dumpData(com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> rXPropSet); + void dumpData(); #endif private: const PropertyNameVector* mpPropNames; |