Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created March 25, 2016 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manashmandal/da026c3990c671ae9e10 to your computer and use it in GitHub Desktop.
Save manashmandal/da026c3990c671ae9e10 to your computer and use it in GitHub Desktop.
#include "qsettingsexample.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QSettingsExample w;
a.setApplicationName("Settings Example");
a.setOrganizationName("Electroscholars");
a.setOrganizationDomain("http://electroscholars.com");
w.show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment