dotherside/D/DQml/qapplication.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
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();
}
}