11 #include "storage/IStorageProvider.h" 22 void Initialize()
override;
23 void Stop()
override { }
25 void GetLocalDrives(VECSOURCES &localDrives)
override { GetDrives(localDrives); }
26 void GetRemovableDrives(VECSOURCES &removableDrives)
override { }
28 std::vector<std::string> GetDiskUsage()
override;
30 bool Eject(
const std::string& mountpath)
override;
34 void GetDrives(VECSOURCES &drives);
36 unsigned int m_removableLength;
Definition: PosixMountProvider.h:16
Definition: IStorageProvider.h:65
Definition: IStorageProvider.h:44