1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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>
29 static void RegisterFactories();
30 static void RegisterInterfaces();
31 static void RegisterControls();
34 ~SwDLL() COVERITY_NOEXCEPT_FALSE
;
36 sw::Filters
& getFilters();
39 SwDLL(SwDLL
const&) = delete;
40 SwDLL
& operator=(SwDLL
const&) = delete;
42 std::unique_ptr
<sw::Filters
> m_pFilters
;
43 SvxAutoCorrCfg
* m_pAutoCorrCfg
;
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */