11 #include "storage/IStorageProvider.h" 23 void Initialize()
override {}
24 void Stop()
override {}
25 bool Eject(
const std::string& mountpath)
override {
return false; }
27 void GetLocalDrives(VECSOURCES& localDrives)
override;
28 void GetRemovableDrives(VECSOURCES& removableDrives)
override;
29 std::vector<std::string> GetDiskUsage()
override;
34 std::string unescape(
const std::string& str);
35 VECSOURCES m_removableDrives;
36 unsigned int m_removableLength;
38 static std::set<std::string> GetRemovableDrives();
39 static std::set<std::string> GetRemovableDrivesLinux();
Definition: IStorageProvider.h:65
Definition: AndroidStorageProvider.h:17
Definition: IStorageProvider.h:44