1 /***************************************************************************
2                           helpfaqform.h  -  description
3                              -------------------
4     begin                : Feb 20, 2005
5     copyright            : (C) 2005 by Lalescu Liviu
6     email                : Please see https://lalescu.ro/liviu/ for details about contacting Liviu Lalescu (in particular, you can find here the e-mail address)
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software: you can redistribute it and/or modify  *
12  *   it under the terms of the GNU Affero General Public License as        *
13  *   published by the Free Software Foundation, either version 3 of the    *
14  *   License, or (at your option) any later version.                       *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef HELPFAQFORM_H
19 #define HELPFAQFORM_H
20 
21 #include "ui_helpfaqform_template.h"
22 
23 class HelpFaqForm : public QDialog, public Ui::HelpFaqForm_template
24 {
25 	Q_OBJECT
26 
27 public:
28 	HelpFaqForm(QWidget* parent);
29 	~HelpFaqForm();
30 
31 	void setText();
32 };
33 
34 #endif
35