diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-10 13:33:32 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-07-10 14:13:57 -0400 |
commit | 4ce9e4a68f0776842ca8a2ce6ac3e0891ba00fea (patch) | |
tree | 997895afcea5327fe747aeae0ed5e8023dbabab9 /include | |
parent | 2aef59dca407a1d342874cde88732b6cb9e131b4 (diff) |
Head cleanup - use forward declarations.
Change-Id: Icc4fa0acad77d61200eb77cc70e21866590b658e
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdoole2.hxx | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/include/svx/svdoole2.hxx b/include/svx/svdoole2.hxx index 7384662f42c0..ad60e5620f73 100644 --- a/include/svx/svdoole2.hxx +++ b/include/svx/svdoole2.hxx @@ -20,28 +20,26 @@ #ifndef INCLUDED_SVX_SVDOOLE2_HXX #define INCLUDED_SVX_SVDOOLE2_HXX -#include <com/sun/star/uno/Reference.h> -#include <com/sun/star/frame/XModel.hpp> -#include <com/sun/star/datatransfer/XTransferable.hpp> -#include <com/sun/star/awt/XWindow.hpp> #include <svx/svdorect.hxx> -#include <vcl/graph.hxx> -#include <vcl/gdimtf.hxx> -#include <sot/storage.hxx> #include <svx/svxdllapi.h> -namespace com { namespace sun { namespace star { namespace embed { +#include <com/sun/star/uno/Reference.h> + +namespace com { namespace sun { namespace star { + +namespace awt { class XWindow; } -class XEmbeddedObject; +namespace datatransfer { class XTransferable; } -}}}} +namespace embed { class XEmbeddedObject; } -namespace svt { +namespace frame { class XModel; } -class EmbeddedObjectRef; +}}} -} +namespace svt { class EmbeddedObjectRef; } +class Graphic; class SvxUnoShapeModifyListener; class SdrOle2ObjImpl; |