dotherside/D/DQml/qguiapplication.d
Filippo Cucchetto 96552b1133 [DQml] Improved the examples by matching with the one of NimQml
This allowed us to add also some missing functions in the QVariant interface
and the QApplication type
2015-04-25 18:40:10 +02:00

25 lines
274 B
D

import dothersideinterface;
class QGuiApplication
{
this()
{
dos_qguiapplication_create();
}
~this()
{
dos_qguiapplication_delete();
}
void exec()
{
dos_qguiapplication_exec();
}
void quit()
{
dos_qguiapplication_quit();
}
}