Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / plugins / coreplugin / aboutdialog.h
bloba023354d53f9f5eb8b290540b3b0be61c8116c4f
1 /**
2 ******************************************************************************
4 * @file aboutdialog.h
5 * @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
6 * Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
7 *****************************************************************************/
8 /*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef ABOUTDIALOG_H
25 #define ABOUTDIALOG_H
27 #include <QDialog>
29 class AboutDialog : public QDialog {
30 Q_OBJECT
32 public:
33 explicit AboutDialog(QWidget *parent = 0);
34 ~AboutDialog();
36 public slots:
37 void openUrl(const QString &url);
40 #endif // ABOUTDIALOG_H