contactengine/main.cpp
author Sebastian Brannstrom <sebastianb@symbian.org>
Tue, 10 Aug 2010 19:10:57 +0100
changeset 22 d5911f90500d
parent 21 3bfc3227045d
child 24 2e833c2a6782
permissions -rwxr-xr-x
Added the missing database.h

#include <QtGui/QApplication>
#include "mainwindow.h"
#include "dbtools.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;

    DBTools dbt;
    dbt.importCSV("c:\\contacts.csv");

#if defined(Q_WS_S60)
    w.showMaximized();
#else
    w.show();
#endif

    return a.exec();
}