A few small insignifigant things from v2 llinventory

This commit is contained in:
Shyotl
2011-07-15 02:35:37 -05:00
parent 3fbfeb2de5
commit f00038918c
2 changed files with 10 additions and 4 deletions

View File

@@ -135,9 +135,15 @@ class LLSD;
class LLAccessEntry
{
public:
LLUUID mID;
S32 mTime;
U32 mFlags;
LLAccessEntry()
: mID(),
mTime(0),
mFlags(0)
{}
LLUUID mID; // Agent ID
S32 mTime; // Time (unix seconds) when entry expires
U32 mFlags; // Not used - currently should always be zero
};
typedef std::map<LLUUID,LLAccessEntry>::iterator access_map_iterator;