Skip to content

Latest commit

 

History

History
55 lines (30 loc) · 936 Bytes

CppQApplication.md

File metadata and controls

55 lines (30 loc) · 936 Bytes

 

 

 

 

 

 

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(); }

 

 

 

 

 

 

Qt Creator 2.0 help