wangzhengquan
2020-09-10 591aacee97f4a6486631c38a6b418e20b2c4109c
1
2
3
4
5
6
7
8
9
#ifndef __NETDISK_FACTORY_H__
#define __NETDISK_FACTORY_H__
#include "netdisk.h"
class NetdiskFacotory {
public:
    static Netdisk *create(std::string deviceType);
};
 
#endif