diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2020-11-04 07:21:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-04 17:01:28 +0100 |
commit | 38b1497dded22a6e4176f103256b27d7f5917aba (patch) | |
tree | a518c01e15aaed0edfe791cce7bb7ad1eb2e3716 /include | |
parent | 35c4646bf2ce276a926eff0c406370e152a9e2db (diff) |
remove pimpl from PropertySetHelper
Change-Id: I20e72b5927d64a69aacd3d4de117a7736d53eea4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105275
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/propertysethelper.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/comphelper/propertysethelper.hxx b/include/comphelper/propertysethelper.hxx index 763a0b91b0a7..9c348b50c7c1 100644 --- a/include/comphelper/propertysethelper.hxx +++ b/include/comphelper/propertysethelper.hxx @@ -24,22 +24,20 @@ #include <com/sun/star/beans/XPropertyState.hpp> #include <com/sun/star/beans/XMultiPropertySet.hpp> #include <comphelper/comphelperdllapi.h> +#include <rtl/ref.hxx> #include <memory> -namespace rtl { template <class reference_type> class Reference; } - namespace comphelper { class PropertySetInfo; struct PropertyMapEntry; -class PropertySetHelperImpl; class COMPHELPER_DLLPUBLIC PropertySetHelper : public css::beans::XPropertySet, public css::beans::XPropertyState, public css::beans::XMultiPropertySet { private: - std::unique_ptr<PropertySetHelperImpl> mpImpl; + rtl::Reference<PropertySetInfo> mxInfo; protected: /// @throws css::beans::UnknownPropertyException |