1 /***************************************************************************
2  *   copyright       : (C) 2003-2017 by Pascal Brachet                     *
3  *   http://www.xm1math.net/texmaker/                                      *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  ***************************************************************************/
11 
12 #ifndef ADDOPTIONDIALOG_H
13 #define ADDOPTIONDIALOG_H
14 
15 #include "ui_addoptiondialog.h"
16 
17 class AddOptionDialog : public QDialog
18 {
19     Q_OBJECT
20 public:
21 	AddOptionDialog(QWidget *parent = 0, const char *name = 0);
22 	~AddOptionDialog();
23 	Ui::AddOptionDialog ui;
24 };
25 
26 #endif
27