/* * This file Copyright (C) 2010-2014 Mnemosyne LLC * * It may be used under the GNU GPL versions 2 or 3 * or any future license endorsed by Mnemosyne LLC. * * $Id$ */ #ifndef ABOUT_DIALOG_H #define ABOUT_DIALOG_H #include #include "ui_about.h" class AboutDialog: public QDialog { Q_OBJECT public: AboutDialog (QWidget * parent = 0); ~AboutDialog () {} public slots: void showCredits (); private: QDialog * myLicenseDialog; Ui::AboutDialog ui; }; #endif