mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
b368ecd5aa
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
255 B
C
16 lines
255 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QT_GUI_H
|
|
#define QT_GUI_H
|
|
|
|
void init_qt_late();
|
|
void init_ui();
|
|
|
|
void run_ui();
|
|
void exit_ui();
|
|
|
|
#if defined(SUBSURFACE_MOBILE)
|
|
#include <QQuickWindow>
|
|
extern QObject *qqWindowObject;
|
|
#endif
|
|
|
|
#endif // QT_GUI_H
|