mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-22 05:30:06 -05:00
23 lines
482 B
C
23 lines
482 B
C
|
#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;
|
||
|
};
|