Skip to content

Instantly share code, notes, and snippets.

@WooodHead
Created October 28, 2015 06:04
Show Gist options
  • Save WooodHead/0fa6221cc30e1d826121 to your computer and use it in GitHub Desktop.
Save WooodHead/0fa6221cc30e1d826121 to your computer and use it in GitHub Desktop.
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton *button = new QPushButton("Quit");
QObject::connect(button, SIGNAL(clicked()),
&app, SLOT(quit()));
button->show();
return app.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment