Utility.h
IntroductionUse the links in the table of contents to the left to access the documentation. Classes
Structs and Unions
ShareDatadata used from shares(shareId) struct ShareData { template <class ShareDataT> ShareData( ShareDataT&& rh) : id{ rh.id }, isUserId{rh.isUserId } { } ShareData( uint64_t id, bool isUserId) : id{ id }, isUserId{isUserId } { } //DEFAULT = 0, ID for userId or groupId uint64_t id; //DEFAULT == TRUE, UserId = True if userID and false if groupId bool isUserId; }; DiscussionThis is the data used from shares(shareId) to keep track of user/group-id relating to a shareid |