Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef _SFX_ARRDECL_HXX
20 : #define _SFX_ARRDECL_HXX
21 :
22 : #include <sfx2/minarray.hxx>
23 : #include <vector>
24 :
25 : class SfxObjectShell;
26 19 : class SfxObjectShellArr_Impl : public std::vector<SfxObjectShell*> {};
27 :
28 : class SfxViewFrame;
29 19 : class SfxViewFrameArr_Impl : public std::vector<SfxViewFrame*> {};
30 :
31 : class SfxViewShell;
32 19 : class SfxViewShellArr_Impl : public std::vector<SfxViewShell*> {};
33 :
34 : struct SfxTbxCtrlFactory;
35 41 : class SfxTbxCtrlFactArr_Impl : public std::vector<SfxTbxCtrlFactory*>
36 : {
37 : public:
38 : // de-allocates child objects
39 : ~SfxTbxCtrlFactArr_Impl();
40 : };
41 :
42 : struct SfxStbCtrlFactory;
43 41 : class SfxStbCtrlFactArr_Impl : public std::vector<SfxStbCtrlFactory*>
44 : {
45 : public:
46 : // de-allocates child objects
47 : ~SfxStbCtrlFactArr_Impl();
48 : };
49 :
50 : struct SfxMenuCtrlFactory;
51 37 : class SfxMenuCtrlFactArr_Impl : public std::vector<SfxMenuCtrlFactory*>
52 : {
53 : public:
54 : // de-allocates child objects
55 : ~SfxMenuCtrlFactArr_Impl();
56 : };
57 :
58 : struct SfxChildWinFactory;
59 41 : class SfxChildWinFactArr_Impl : public std::vector<SfxChildWinFactory*>
60 : {
61 : public:
62 : // de-allocates child objects
63 : ~SfxChildWinFactArr_Impl();
64 : };
65 :
66 : class SfxModule;
67 : typedef ::std::vector<SfxModule*> SfxModuleArr_Impl;
68 :
69 : class SfxFrame;
70 : typedef ::std::vector<SfxFrame*> SfxFrameArr_Impl;
71 :
72 : class SfxFilter;
73 : typedef ::std::vector< SfxFilter* > SfxFilterList_Impl;
74 :
75 : #endif
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|