File indexing completed on 2024-04-28 05:45:44

0001 /*
0002     SPDX-FileCopyrightText: 2018 Andrius Štikonas <andrius@stikonas.eu>
0003 
0004     SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #ifndef KPMCORE_DEVICE_P_H
0008 #define KPMCORE_DEVICE_P_H
0009 
0010 #include "core/device.h"
0011 
0012 #include <QString>
0013 
0014 #include <memory>
0015 
0016 class PartitionTable;
0017 class SmartStatus;
0018 
0019 class DevicePrivate
0020 {
0021 public:
0022     QString m_Name;
0023     QString m_DeviceNode;
0024     qint64  m_LogicalSectorSize;
0025     qint64  m_TotalLogical;
0026     PartitionTable* m_PartitionTable;
0027     QString m_IconName;
0028     std::shared_ptr<SmartStatus> m_SmartStatus;
0029     Device::Type m_Type;
0030 };
0031 
0032 #endif