summaryrefslogtreecommitdiffstats
path: root/src/core/browser_accessibility_qt.h
blob: 478ce0f627b6b81d1445751243e2ec2a6cf252c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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