1 //
2 //
3 // Description: This file is part of FET
4 //
5 //
6 // Author: Liviu Lalescu <Please see https://lalescu.ro/liviu/ for details about contacting Liviu Lalescu (in particular, you can find here the e-mail address)>
7 // Copyright (C) 2021 Liviu Lalescu <https://lalescu.ro/liviu/>
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 TERMSFORM_H
19 #define TERMSFORM_H
20 
21 #include "ui_termsform_template.h"
22 
23 class TermsForm : public QDialog, Ui::TermsForm_template
24 {
25 	Q_OBJECT
26 public:
27 	TermsForm(QWidget* parent);
28 	~TermsForm();
29 
30 public slots:
31 	void ok();
32 	void cancel();
33 };
34 
35 #endif
36