/** * @mainpage This project serves as a starter for the cryptographic exercises for the IT-Security lecture */ #include #include "mainwindow.h" /** * @brief main Default main function as created by QtCreator * @param argc Argument count * @param argv Array with commandline arguments * @return Return 0 on success. */ int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show(); return a.exec(); }