00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef DLG_ABOUT_H 00008 #define DLG_ABOUT_H 00009 00010 #include <QMessageBox> 00011 00012 class MainWindow; 00013 00015 class DlgAbout : public QMessageBox 00016 { 00017 Q_OBJECT; 00018 00019 public: 00021 DlgAbout(MainWindow &mainWindow); 00022 00023 private: 00024 DlgAbout(); 00025 00026 MainWindow &m_mainWindow; 00027 }; 00028 00029 #endif // DLG_ABOUT_H