summaryrefslogtreecommitdiff
path: root/include/vcl/pngwrite.hxx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2018-12-01 17:59:14 +0100
committerMiklos Vajna <vmiklos@collabora.com>2018-12-03 15:13:07 +0100
commitbe99b42489b3dad31e2a92ece937131803b17275 (patch)
treed05fd370dce737eecb7461373b0daf091063aa62 /include/vcl/pngwrite.hxx
parentb3e77dd93f2305f09e89d9a23a9b4404d7c796ba (diff)
tdf#42949 Fix IWYU warnings in include/vcl/[n-r]*
Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: I5a4951e983078ab6b6cbf0e96b00a20584b85e20 Reviewed-on: https://gerrit.libreoffice.org/64398 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/vcl/pngwrite.hxx')
-rw-r--r--include/vcl/pngwrite.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/vcl/pngwrite.hxx b/include/vcl/pngwrite.hxx
index fe1b2c3e412d..4aa49244df36 100644
--- a/include/vcl/pngwrite.hxx
+++ b/include/vcl/pngwrite.hxx
@@ -20,13 +20,16 @@
#ifndef INCLUDED_VCL_PNGWRITE_HXX
#define INCLUDED_VCL_PNGWRITE_HXX
-#include <com/sun/star/uno/Sequence.hxx>
-#include <com/sun/star/beans/PropertyValue.hpp>
#include <vcl/dllapi.h>
-#include <vcl/bitmapex.hxx>
#include <memory>
#include <vector>
+namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } }
+namespace com { namespace sun { namespace star { namespace uno { template <typename > class Sequence; } } } }
+
+class BitmapEx;
+class SvStream;
+
namespace vcl
{
class PNGWriterImpl;