2009-04-20 10:51:40 +02:00
|
|
|
#include <QtGui/QApplication>
|
2009-04-02 10:41:35 +02:00
|
|
|
#include "addressbook.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2009-04-20 10:51:40 +02:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
AddressBook w;
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
2009-04-02 10:41:35 +02:00
|
|
|
}
|