summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/haiku/qhaikuservices.h
blob: 5cf2195e71a3b5664cdde6873067bcf2e3563904 (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) 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:
    bool openUrl(const QUrl &url) override;
    bool openDocument(const QUrl &url) override;

    QByteArray desktopEnvironment() const override;
};

QT_END_NAMESPACE

#endif