Bump version to 21.06.18.1
[LibreOffice.git] / include / sfx2 / AccessibilityCheck.hxx
blob959601c9872ee6b27254ba1bb0c3d71a7f0c01d3
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/.
9 */
11 #ifndef INCLUDED_SFX2_ACCESSIBILITYCHECKDIALOG_HXX
12 #define INCLUDED_SFX2_ACCESSIBILITYCHECKDIALOG_HXX
14 #include <sfx2/dllapi.h>
15 #include <sfx2/AccessibilityIssue.hxx>
17 namespace sfx
19 class SFX2_DLLPUBLIC AccessibilityCheck
21 protected:
22 AccessibilityIssueCollection m_aIssueCollection;
24 public:
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: */