Initial source commit

Initial source commit
This commit is contained in:
mfeemster
2014-07-08 00:11:14 -07:00
parent 1493c22925
commit ef56c16b2b
214 changed files with 108754 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#pragma once
#include "ui_AboutDialog.h"
/// <summary>
/// FractoriumAboutDialog class.
/// </summary>
/// <summary>
/// The about dialog displays several group boxes showing the
/// code and icons used in this project and their respective authors
/// and licenses. It performs no other function.
/// </summary>
class FractoriumAboutDialog : public QDialog
{
Q_OBJECT
public:
FractoriumAboutDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
private:
Ui::AboutDialog ui;
};