mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-14 13:46:39 +00:00
25 lines
299 B
D
25 lines
299 B
D
import dothersideinterface;
|
|
|
|
class QApplication
|
|
{
|
|
this()
|
|
{
|
|
dos_qapplication_create();
|
|
}
|
|
|
|
~this()
|
|
{
|
|
dos_qapplication_delete();
|
|
}
|
|
|
|
void exec()
|
|
{
|
|
dos_qapplication_exec();
|
|
}
|
|
|
|
void quit()
|
|
{
|
|
dos_qapplication_quit();
|
|
}
|
|
}
|