Files
qt-creator/doc/examples/addressbook-sdk/part5/main.cpp
Daniel Molkentin ef43fbf594 use module-less include file style for the sdk example.
This was proposed by Kavindra and actually it is
probably simpler for newbies. The documentation
already talks about this style, so use it.
2009-08-07 15:05:14 +02:00

11 lines
173 B
C++

#include <QApplication>
#include "addressbook.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
AddressBook w;
w.show();
return a.exec();
}