mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 04:26:43 +00:00
c9ffaf4f59
Removed the int parameter from methods that return a string
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();
|
|
}
|
|
}
|