diff options
author | Jorenz Paragas <j.paragas.237@gmail.com> | 2016-05-07 14:17:24 -0700 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-05-10 19:20:40 +0000 |
commit | 4bf7614503292fe69d3e5835621c1cdcaa4536cb (patch) | |
tree | 4aa8f96d0861c4663cbe45a5636ecbfca0140f7e /include/oox/helper/propertyset.hxx | |
parent | 3742748699cc09b04bff3d7c606f1c7a21427357 (diff) |
tdf#42949: clean up includes in include/oox/helper with iwyu
...and fix the many compiler errors that occurred as a result.
Change-Id: I497c326272b2f02737ca3765720d6815b735423b
Reviewed-on: https://gerrit.libreoffice.org/24735
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/oox/helper/propertyset.hxx')
-rw-r--r-- | include/oox/helper/propertyset.hxx | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/include/oox/helper/propertyset.hxx b/include/oox/helper/propertyset.hxx index 1470cfcf3f51..750e5f75a679 100644 --- a/include/oox/helper/propertyset.hxx +++ b/include/oox/helper/propertyset.hxx @@ -20,10 +20,18 @@ #ifndef INCLUDED_OOX_HELPER_PROPERTYSET_HXX #define INCLUDED_OOX_HELPER_PROPERTYSET_HXX -#include <com/sun/star/beans/XMultiPropertySet.hpp> -#include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/beans/XPropertySetInfo.hpp> +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/Sequence.hxx> #include <oox/dllapi.h> +#include <rtl/ustring.hxx> +#include <sal/types.h> + +namespace com { namespace sun { namespace star { + namespace beans { class XMultiPropertySet; } + namespace beans { class XPropertySet; } + namespace beans { class XPropertySetInfo; } +} } } namespace oox { |