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