summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-11-21 22:57:41 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-11-21 22:58:48 -0500
commite59ae45fec5e65bea1bb5770d79a3f027e6adcf6 (patch)
tree5dd3b598c9208dcb380a815364a0cd8a5c8a8eaf /include
parent483cff5e661aa40c8fd16d62eeb68cc29872eb4b (diff)
Forward declare all the std::vector based impl container classes.
Now #include <vector> is a goner... Change-Id: Ia2da27bae5fadfa3f6f633e55fcedce405281b67
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/app.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx
index 85a1acd8d151..367376164c26 100644
--- a/include/sfx2/app.hxx
+++ b/include/sfx2/app.hxx
@@ -36,7 +36,6 @@
#include <vcl/svapp.hxx>
#include <sfx2/shell.hxx>
-#include <vector>
class Timer;
class WorkWindow;
@@ -61,15 +60,15 @@ class SfxMedium;
class SfxMenuCtrlFactArr_Impl;
class SfxNewFileDialog;
class SfxObjectShell;
-typedef ::std::vector<SfxObjectShell*> SfxObjectShellArr_Impl;
+class SfxObjectShellArr_Impl;
class SfxProgress;
class SfxSlotPool;
class SfxStbCtrlFactArr_Impl;
class SfxTbxCtrlFactArr_Impl;
class SfxViewFrame;
-typedef ::std::vector<SfxViewFrame*> SfxViewFrameArr_Impl;
+class SfxViewFrameArr_Impl;
class SfxViewShell;
-typedef ::std::vector<SfxViewShell*> SfxViewShellArr_Impl;
+class SfxViewShellArr_Impl;
class StarBASIC;
class SfxWorkWindow;
class SfxFilterMatcher;