22 #ifndef BACKENDS_CLOUD_STORAGEINFO_H 23 #define BACKENDS_CLOUD_STORAGEINFO_H 25 #include "common/str.h" 36 uint64 _usedBytes, _allocatedBytes;
40 _uid(uid_), _name(name_), _email(email_), _usedBytes(used_), _allocatedBytes(allocated) {}
45 uint64 used()
const {
return _usedBytes; }
46 uint64 available()
const {
return _allocatedBytes; }
Definition: basestorage.h:28
Definition: storageinfo.h:34