update dev300-m58
[ooovba.git] / sd / inc / sddll.hxx
blob1e8ad6108754b1e9b265bd91ba85cf1fb7e2170e
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: sddll.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _SDDLL_HXX
32 #define _SDDLL_HXX
34 #include "sdmod.hxx"
35 #include <sfx2/module.hxx>
36 #include <sfx2/sfxdefs.hxx>
38 class SvFactory;
39 class SotFactory;
40 class SfxMedium;
41 class SfxFilter;
44 /*************************************************************************
46 |* This class is a wrapper for a Load-On-Demand-DLL. One instance
47 |* per SfxApplication will be created for the runtime of
48 |* SfxApplication-subclass::Main().
50 |* Remember: Do export this class! It is used by the application.
52 \************************************************************************/
54 class SdDLL
56 protected:
57 static void RegisterFactorys();
58 static void RegisterInterfaces();
59 static void RegisterControllers();
61 public:
62 // Ctor/Dtor must be linked to the application
63 SdDLL();
64 ~SdDLL();
66 // static-init/exit-code must be linked to the application
67 static void LibInit(); // called from SfxApplication-subclass::Init()
68 static void LibExit(); // called from SfxApplication-subclass::Exit()
70 // DLL-init/exit-code must be linked to the DLL only
71 static void Init(); // called directly after loading the DLL
72 static void Exit(); // called directly befor unloading the DLL
77 #ifndef _SD_DLL // Das define muss im Draw gesetzt werden
78 #define SD_MOD() ( *(SdModule**) GetAppData(SHL_DRAW) )
79 #endif
81 #endif // _SDDLL_HXX