Markopy
Utilizing Markov Models for brute forcing attacks
about.cpp
Go to the documentation of this file.
1 
2 /** @file about.cpp
3  * @brief About page
4  * @authors Yunus Emre Yılmaz
5  *
6  */
7 
8 #include <fstream>
9 #include <QtWidgets/QApplication>
10 #include "about.h"
11 
12 using namespace Markov::GUI;
13 
14 about::about(QWidget* parent)
15  : QMainWindow(parent)
16 {
17  ui.setupUi(this);
18 
19 }