mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 21:20:07 -05:00
ef56c16b2b
Initial source commit
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;
|
|
};
|