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

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

