forked from qt-creator/qt-creator
This was proposed by Kavindra and actually it is probably simpler for newbies. The documentation already talks about this style, so use it.
11 lines
173 B
C++
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();
|
|
}
|