blob: 5cf2195e71a3b5664cdde6873067bcf2e3563904 (
plain)
12345678910111213141516171819202122 | // Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Tobias Koenig <tobias.koenig@kdab.com>// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only#ifndef QHAIKUSERVICES_H#define QHAIKUSERVICES_H#include <qpa/qplatformservices.h> QT_BEGIN_NAMESPACE class QHaikuServices :public QPlatformServices {public:boolopenUrl(const QUrl &url) override;boolopenDocument(const QUrl &url) override; QByteArray desktopEnvironment()const override;}; QT_END_NAMESPACE #endif
|