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/.
11 #ifndef INCLUDED_SFX2_ACCESSIBILITYCHECKDIALOG_HXX
12 #define INCLUDED_SFX2_ACCESSIBILITYCHECKDIALOG_HXX
14 #include <sfx2/dllapi.h>
15 #include <sfx2/AccessibilityIssue.hxx>
19 class SFX2_DLLPUBLIC AccessibilityCheck
22 AccessibilityIssueCollection m_aIssueCollection
;
25 AccessibilityCheck() = default;
26 virtual ~AccessibilityCheck();
28 virtual void check() = 0;
30 AccessibilityIssueCollection
& getIssueCollection();
33 } // end sfx namespace
35 #endif // INCLUDED_SFX2_ACCESSIBILITYCHECKDIALOG_HXX
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */