YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
aboutdlg.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 ABOUTDLG_H
7#define ABOUTDLG_H
8
9#include <QDialog>
10
11namespace Ui {
12class AboutDlg;
13}
14
15class AboutDlg : public QDialog
16{
17 Q_OBJECT
18
19public:
20 explicit AboutDlg(QString appName, QString version, QString copyright, QString website, QWidget *parent = 0);
22
23private:
24 Ui::AboutDlg *ui;
25
26private slots:
27 void onLicence();
28};
29
30#endif // ABOUTDLG_H
AboutDlg(QString appName, QString version, QString copyright, QString website, QWidget *parent=0)
Definition aboutdlg.h:11