YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
yscopewindow.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 YSCOPEWINDOW_H
7#define YSCOPEWINDOW_H
8
9#include <QDialog>
10
11namespace Ui {
12class YscopeWindow;
13}
14
15class YscopeWindow : public QDialog
16{
17 Q_OBJECT
18
19public:
20 explicit YscopeWindow(QWidget *parent = 0);
22 int getIndex();
23
24private:
25 Ui::YscopeWindow *ui;
26 int index;
27
28private slots:
29 void onInspect();
30 void onCancel();
31 void onIndexChanged(int);
32};
33
34#endif // YSCOPEWINDOW_H
Definition aboutdlg.h:11