File indexing completed on 2024-09-15 12:24:28
0001 /* 0002 * SPDX-FileCopyrightText: 2022 Alexander Stippich <a.stippich@gmx.net> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef KSANE_DEVICEINFORMATION_P_H 0008 #define KSANE_DEVICEINFORMATION_P_H 0009 0010 #include "baseoption.h" 0011 0012 namespace KSaneCore 0013 { 0014 0015 class DeviceInformationPrivate 0016 { 0017 public: 0018 QString name; /* unique device name */ 0019 QString vendor; /* device vendor string */ 0020 QString model; /* device model name */ 0021 QString type; /* device type (e.g., "flatbed scanner") */ 0022 }; 0023 0024 } // namespace KSaneCore 0025 0026 #endif // KSANE_DEVICEINFORMATION_P_H 0027