Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / uibase / app / swdllimpl.hxx
blob0aea89bfa75bcc227742862245801b42f2252267
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #ifndef INCLUDED_SW_SOURCE_UIBASE_APP_SWDLLIMPL_HXX
11 #define INCLUDED_SW_SOURCE_UIBASE_APP_SWDLLIMPL_HXX
13 #include <sal/config.h>
15 #include <sal/types.h>
17 #include <memory>
19 namespace sw
21 class Filters;
24 class SvxAutoCorrCfg;
26 class SwDLL
28 public:
29 static void RegisterFactories();
30 static void RegisterInterfaces();
31 static void RegisterControls();
33 SwDLL();
34 ~SwDLL() COVERITY_NOEXCEPT_FALSE;
36 sw::Filters& getFilters();
38 private:
39 SwDLL(SwDLL const&) = delete;
40 SwDLL& operator=(SwDLL const&) = delete;
42 std::unique_ptr<sw::Filters> m_pFilters;
43 SvxAutoCorrCfg* m_pAutoCorrCfg;
46 #endif
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */