1 #include "Common/Common.h"
3 #include <qapplication.h>
4 #include <qpushbutton.h>
5 #include <qtopia/qpeapplication.h>
7 #include "Qt/QtDasherWidget.h"
9 int main(int argc
, char **argv
) {
10 QPEApplication
app(argc
, argv
);
12 QtDasherWidget
*dasher
= new QtDasherWidget(240, 250,
13 new CDasherInterface
, 0);
14 app
.setMainWidget(dasher
);
15 dasher
->showMaximized();