phoneplugins/csplugin/tsrc/automaticanswertest/main.cpp
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:33:21 +0100
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 45 6b911d05207e
permissions -rw-r--r--
Catchup to latest Symbian^4


#include "automaticanswertest.h"

#include <QDebug>
#include <QtGui>
#include <QGraphicsWidget>
#include <hbapplication.h>
#include <hbmainwindow.h>

int main(int argc, char *argv[])
{
    qDebug () << "AUTOMATICANSWER__main()<<";
    HbApplication app (argc, argv);    
    HbMainWindow mainWindow;
    automaticanswertest* testview = new automaticanswertest ();
    mainWindow.addView(testview);
    mainWindow.setCurrentView(testview);
    mainWindow.show();
    return app.exec();
}