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 REFDIALOG_H
13 #define REFDIALOG_H
14 
15 #include "ui_refdialog.h"
16 
17 class RefDialog : public QDialog  {
18    Q_OBJECT
19 public:
20 	RefDialog(QWidget *parent=0, const char *name=0);
21 	~RefDialog();
22 	Ui::RefDialog ui;
23 };
24 
25 
26 #endif
27