mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-14 21:57:08 +00:00
25 lines
314 B
D
25 lines
314 B
D
import dothersideinterface;
|
|
|
|
class QGuiApplication
|
|
{
|
|
this()
|
|
{
|
|
dos_qguiapplication_create();
|
|
}
|
|
|
|
~this()
|
|
{
|
|
dos_qguiapplication_delete();
|
|
}
|
|
|
|
void exec()
|
|
{
|
|
dos_qguiapplication_exec();
|
|
}
|
|
|
|
void quit()
|
|
{
|
|
dos_qguiapplication_quit();
|
|
}
|
|
}
|