equal
deleted
inserted
replaced
|
1 |
|
2 #include "automaticanswertest.h" |
|
3 |
|
4 #include <QDebug> |
|
5 #include <QtGui> |
|
6 #include <QGraphicsWidget> |
|
7 #include <hbapplication.h> |
|
8 #include <hbmainwindow.h> |
|
9 |
|
10 int main(int argc, char *argv[]) |
|
11 { |
|
12 qDebug () << "AUTOMATICANSWER__main()<<"; |
|
13 HbApplication app (argc, argv); |
|
14 HbMainWindow mainWindow; |
|
15 automaticanswertest* testview = new automaticanswertest (); |
|
16 mainWindow.addView(testview); |
|
17 mainWindow.setCurrentView(testview); |
|
18 mainWindow.show(); |
|
19 return app.exec(); |
|
20 } |