#include "startupWindow.h" /* Function: Main * Params In * int argc: number of command line arguments * char **argv: command line arguments * Return * int: returns whether the program executed successfully. * Purpose * The function sets up the QT application, creates the main window * and displays the window to the user. */ int main(int argc, char **argv) { QApplication a( argc, argv ); StartupWindow startupWindow; return a.exec(); }