1 | /* |
2 | SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef NETWORKMANAGERQT_SERIAL_SETTING_P_H |
8 | #define NETWORKMANAGERQT_SERIAL_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | namespace NetworkManager |
13 | { |
14 | class SerialSettingPrivate |
15 | { |
16 | public: |
17 | SerialSettingPrivate(); |
18 | |
19 | QString name; |
20 | quint32 baud; |
21 | quint32 bits; |
22 | NetworkManager::SerialSetting::Parity parity; |
23 | quint32 stopbits; |
24 | quint64 sendDelay; |
25 | }; |
26 | |
27 | } |
28 | |
29 | #endif // NETWORKMANAGERQT_SERIAL_SETTING_P_H |
30 | |