wm: mastermind-qt

ref: 6608831bcd7f4cba73d4ff672d9ee6f151c87099
dir: /main.cpp/

View raw version
#include "mainwindow.h"
#include "fn.h"

#include <QMessageBox>
#include <QInputDialog>
#include <QApplication>
#include <iostream> //debug

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

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