mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-15 14:16:32 +00:00
This allowed us to add also some missing functions in the QVariant interface and the QApplication type
25 lines
274 B
D
25 lines
274 B
D
import dothersideinterface;
|
|
|
|
class QGuiApplication
|
|
{
|
|
this()
|
|
{
|
|
dos_qguiapplication_create();
|
|
}
|
|
|
|
~this()
|
|
{
|
|
dos_qguiapplication_delete();
|
|
}
|
|
|
|
void exec()
|
|
{
|
|
dos_qguiapplication_exec();
|
|
}
|
|
|
|
void quit()
|
|
{
|
|
dos_qguiapplication_quit();
|
|
}
|
|
}
|