YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
genericinfodlg.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#ifndef GENERICINFODLG_H
7#define GENERICINFODLG_H
8
9#include <QDialog>
10
11namespace Ui {
12class GenericInfoDlg;
13}
14
15class GenericInfoDlg : public QDialog
16{
17 Q_OBJECT
18
19public:
20 explicit GenericInfoDlg(QString title, QString description, QString text, QWidget *parent = 0);
22
23private:
24 Ui::GenericInfoDlg *ui;
25};
26
27#endif // GENERICINFODLG_H
GenericInfoDlg(QString title, QString description, QString text, QWidget *parent=0)
Definition aboutdlg.h:11