#include "alarm.h"
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
AppMainView w;
w.show();
return a.exec();
}