#include "FractoriumPch.h"
#include "AboutDialog.h"
///
/// Constructor that takes a parent widget and passes it to the base, then
/// sets up the GUI.
///
/// The parent widget. Default: NULL.
/// The window flags. Default: 0.
FractoriumAboutDialog::FractoriumAboutDialog(QWidget* parent, Qt::WindowFlags f)
: QDialog(parent, f)
{
ui.setupUi(this);
}