1 #ifndef ABOUTFORM_HPP
2 #define ABOUTFORM_HPP
3 /*
4     Copyright © 2011-13 Qtrac Ltd. All rights reserved.
5     This program or module is free software: you can redistribute it
6     and/or modify it under the terms of the GNU General Public License
7     as published by the Free Software Foundation, either version 2 of
8     the License, or (at your option) any later version. This program is
9     distributed in the hope that it will be useful, but WITHOUT ANY
10     WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12     for more details.
13 */
14 
15 #include <QDialog>
16 
17 class AboutForm : public QDialog
18 {
19     Q_OBJECT
20 
21 public:
22     AboutForm(QWidget *parent=0);
23 };
24 
25 #endif // ABOUTFORM_HPP
26