diff options
author | Jorenz Paragas <j.paragas.237@gmail.com> | 2016-04-30 00:06:53 -0700 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-05-03 20:17:37 +0000 |
commit | af1174b2dea72359e8eb0e15297c61cf82571250 (patch) | |
tree | 8749d6ad0971cbd48201c8962a6f5ece64b0a100 /include/oox/drawingml/graphicshapecontext.hxx | |
parent | 12c222a3ae3d65b0c088e42bec426ec0e5ca5b75 (diff) |
tdf#42949: clean up includes in include/oox/drawingml with iwyu
Add includes in other files to fix compiler errors.
Change-Id: I566e2e081094cb074d20afbe7ceee49f759c725b
Reviewed-on: https://gerrit.libreoffice.org/24510
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/oox/drawingml/graphicshapecontext.hxx')
-rw-r--r-- | include/oox/drawingml/graphicshapecontext.hxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/oox/drawingml/graphicshapecontext.hxx b/include/oox/drawingml/graphicshapecontext.hxx index 2cf6c6285a33..fed6d893007f 100644 --- a/include/oox/drawingml/graphicshapecontext.hxx +++ b/include/oox/drawingml/graphicshapecontext.hxx @@ -20,10 +20,15 @@ #ifndef INCLUDED_OOX_DRAWINGML_GRAPHICSHAPECONTEXT_HXX #define INCLUDED_OOX_DRAWINGML_GRAPHICSHAPECONTEXT_HXX -#include <oox/drawingml/shape.hxx> -#include <oox/drawingml/shapecontext.hxx> +#include <oox/core/contexthandler.hxx> #include <oox/dllapi.h> +#include <oox/drawingml/drawingmltypes.hxx> +#include <oox/drawingml/shapecontext.hxx> +#include <rtl/ustring.hxx> +#include <sal/types.h> +namespace oox { class AttributeList; } +namespace oox { namespace core { class ContextHandler2Helper; } } namespace oox { namespace vml { struct OleObjectInfo; } } namespace oox { namespace drawingml { @@ -63,8 +68,6 @@ private: }; -class Diagram; - class DiagramGraphicDataContext : public ShapeContext { @@ -81,6 +84,8 @@ private: }; +struct ChartShapeInfo; + class ChartGraphicDataContext : public ShapeContext { public: |