12 lines
231 B
C++
12 lines
231 B
C++
#include <QtGui/QApplication>
|
|
#include "qstringdebug.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
qstringDebug w;
|
|
w.show();
|
|
a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()));
|
|
return a.exec();
|
|
}
|