wm: mastermind-qt

ref: b5d27c8190334c3a5f05314973df9bee0ba91a57
dir: /main.cpp/

View raw version
#include "mainwindow.h"

#include <QMessageBox>
#include <QInputDialog>
#include <QApplication>

using namespace std;
// I dare not to take a look at what i've done
// todo: code now looks really really... ugly
// move aux funcations into a .h file,
// try to refactor it
// debug it, if you can
// remove resize grip
// XXXs in code
// get rid of QString::fromStdString(std::(to_string(...)))

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