summaryrefslogtreecommitdiffstats
path: root/examples/serialbus/can/canbusdeviceinfodialog.h
blob: f9c7eb8b215ebce0b8614dc1a9299e43ab4939ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2021 Andre Hartmann <aha_1980@gmx.de>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef CANBUSDEVICEINFODIALOG_H
#define CANBUSDEVICEINFODIALOG_H

#include <QDialog>

QT_BEGIN_NAMESPACE

class QCanBusDeviceInfo;

namespace Ui {
class CanBusDeviceInfoDialog;
}

QT_END_NAMESPACE

class CanBusDeviceInfoDialog : public QDialog
{
    Q_OBJECT

public:
    explicit CanBusDeviceInfoDialog(const QCanBusDeviceInfo &info, QWidget *parent = nullptr);
    ~CanBusDeviceInfoDialog();

private:
    Ui::CanBusDeviceInfoDialog *m_ui = nullptr;
};

#endif // CANBUSDEVICEINFODIALOG_H