summaryrefslogtreecommitdiffstats
path: root/src/core/browser_accessibility_qt.h
blob: 598aa3ef52de938b8776edb5a0ef0b784c6d1934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef BROWSER_ACCESSIBILITY_QT_H
#define BROWSER_ACCESSIBILITY_QT_H

#include <QtGui/qtguiglobal.h>

#if QT_CONFIG(accessibility)
QT_FORWARD_DECLARE_CLASS(QAccessibleInterface)

namespace content {
class BrowserAccessibility;

QAccessibleInterface *toQAccessibleInterface(BrowserAccessibility *obj);
const QAccessibleInterface *toQAccessibleInterface(const BrowserAccessibility *obj);

} // namespace content
#endif // QT_CONFIG(accessibility)

#endif // BROWSER_ACCESSIBILITY_QT_H