// Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Tobias Koenig // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QHAIKUAPPLICATION_H #define QHAIKUAPPLICATION_H #include #include class QHaikuApplication : public BApplication { public: explicit QHaikuApplication(const char *signature); bool QuitRequested() override; void RefsReceived(BMessage* message) override; }; #endif