summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 3cb3667edd7ff1d6167c3cf5add417aeeca637dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
  * @mainpage This project serves as a starter for the cryptographic exercises for the IT-Security lecture
  */

#include <QApplication>
#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();
}