mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +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();
|
|
}
|
|
}
|