Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

 

 

(C++) Qt QApplication

 

QApplication is a Qt class that 'manages the GUI application's control flow and main settings' [1].

 

#include <QtGui/QApplication>

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  Dialog w;
  w.show();
  return a.exec();
}

 

 

 

 

 

References

 

  1. Qt Creator 2.0 help
  2.  

     

     

     

     

    Go back to Richel Bilderbeek's C++ page.

    Go back to Richel Bilderbeek's homepage.

     

    Valid XHTML 1.0 Strict