#define QT_NO_DRAGANDDROP
#define QT_NO_PROPERTIES
#include <ZApplication.h>
#include <ZMessageDlg.h>

int main(int argc, char **argv)
{
	ZApplication* a = new ZApplication(argc, argv);
	ZMessageDlg* dlg = new ZMessageDlg(QString("Hello World!"), QString("This is hello world application."), (ZMessageDlg::MessageDlgType)0 , 0 , NULL , "showQ" , true , 0);
	a->setMainWidget(dlg);
	dlg->show();
	a->exec();
	return 0;
}

