mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 16:30:02 +00:00
17 lines
405 B
C
17 lines
405 B
C
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef SOUNDACCESSIBLE_H
|
|
#define SOUNDACCESSIBLE_H
|
|
#include <QAccessibleInterface>
|
|
|
|
QAccessibleInterface *soundAccessibleFactory(const QString &classname, QObject *object)
|
|
{
|
|
QAccessibleInterface *interface = nullptr;
|
|
|
|
return interface;
|
|
}
|
|
|
|
#endif // SOUNDACCESSIBLE_H
|