diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-01-12 22:28:32 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-01-22 09:27:34 +0100 |
commit | 6e5cdd9d550576095c046f968877956a337330cb (patch) | |
tree | b58d2f0dd5ef349a67d353fc6ffb4ec3ef6b3e04 /include/xmloff/xmlexppr.hxx | |
parent | eaa026a063a950d3682a8f88272d1f9f2cc1f004 (diff) |
tdf#42949 Fix IWYU warnings in include/xmloff/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Id20e0bc42e39f868a7c5d49d756f2ad5e14a86c0
Reviewed-on: https://gerrit.libreoffice.org/66637
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/xmloff/xmlexppr.hxx')
-rw-r--r-- | include/xmloff/xmlexppr.hxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx index 770572c3bd99..28be918474ee 100644 --- a/include/xmloff/xmlexppr.hxx +++ b/include/xmloff/xmlexppr.hxx @@ -20,15 +20,21 @@ #ifndef INCLUDED_XMLOFF_XMLEXPPR_HXX #define INCLUDED_XMLOFF_XMLEXPPR_HXX -#include <rtl/ref.hxx> #include <sal/config.h> #include <xmloff/dllapi.h> -#include <xmloff/xmlprmap.hxx> #include <salhelper/simplereferenceobject.hxx> #include <o3tl/typed_flags_set.hxx> +#include <rtl/ustring.hxx> -#include <com/sun/star/beans/XPropertySet.hpp> #include <memory> +#include <vector> + +namespace com { namespace sun { namespace star { namespace uno { template <typename > class Reference; } } } } +namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } } } } +namespace rtl { template <class reference_type> class Reference; } + +class XMLPropertySetMapper; +struct XMLPropertyState; enum class SvXmlExportFlags { NONE = 0x0000, @@ -42,7 +48,6 @@ namespace o3tl class SvXMLUnitConverter; class SvXMLAttributeList; class SvXMLNamespaceMap; -class FilterPropertiesInfos_Impl; class SvXMLExport; class XMLOFF_DLLPUBLIC SvXMLExportPropertyMapper : public salhelper::SimpleReferenceObject |