1/*
2 * This file Copyright (C) Mnemosyne LLC
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9 *
10 * $Id: license.h 11092 2010-08-01 20:36:13Z charles $
11 */
12
13#ifndef LICENSE_DIALOG_H
14#define LICENSE_DIALOG_H
15
16#include <QDialog>
17
18class LicenseDialog: public QDialog
19{
20        Q_OBJECT
21
22    public:
23        LicenseDialog( QWidget * parent = 0 );
24        ~LicenseDialog( ) { }
25
26};
27
28#endif
29
30