wangzhengquan
2020-09-10 591aacee97f4a6486631c38a6b418e20b2c4109c
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;