The results are pretty sweet:
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
An unofficial blog for all things Qt Creator.
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
Nice post..
ReplyDeleteAlso found a nice eclipse plugin to directly copy code as HTML from eclipse IDE.
http://java-sample-program.blogspot.com/2012/12/copy-as-html-eclipse-plugin.html