Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <QtGui>
  2.  
  3. int main(int argc, char** argv)
  4. {
  5.     QApplication app(argc, argv);
  6.     QLabel label("This is a test");
  7.     label.show();
  8.     return app.exec();
  9. }