dotherside/D/DQml/qguiapplication.d
Filippo Cucchetto c9ffaf4f59 [DQml] Refactored and beautified the code
Removed the int parameter from methods that return a string
2015-04-27 19:58:18 +02:00

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();
}
}