wangzhengquan
2020-06-12 9f2f9eed5ca905c4641b296773ac21aaa735624d
device/include/netdisk.h
@@ -28,22 +28,20 @@
} Netdisk_DownloadRequest;
typedef struct DeviceInfo
{
    int startChannel;       //起始通道号
    int maxChannels;        //最大通道数
} DeviceInfo;
// 网络硬盘 抽象类
class Netdisk {
private:
    std::string loginDataFile;
    struct DeviceInfo
    {
        int startChannel;       //起始通道号
        int maxChannels;        //最大通道数
    };
protected:
    DeviceInfo deviceInfo;
    std::string deviceType; //设备类型
    std::string loginUUID;