diff options
author | Eli Linden <eli@lindenlab.com> | 2010-08-04 12:52:06 -0700 |
---|---|---|
committer | Eli Linden <eli@lindenlab.com> | 2010-08-04 12:52:06 -0700 |
commit | b4b503d4ac3fb43aea61a9c0b7adb0ae50b096ab (patch) | |
tree | 987739481f5baf68605705c3cfba3e1e8ff6bf19 /indra/newview/llviewerregion.h | |
parent | b3fd508cff74da6b8620dc440482e41fabc9337a (diff) | |
parent | aaa41211c83a9dcc9ff3db84c7e4b9de985be692 (diff) |
Merge
Diffstat (limited to 'indra/newview/llviewerregion.h')
-rw-r--r-- | indra/newview/llviewerregion.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/indra/newview/llviewerregion.h b/indra/newview/llviewerregion.h index a9e7ef771c..8254cf1cad 100644 --- a/indra/newview/llviewerregion.h +++ b/indra/newview/llviewerregion.h @@ -99,9 +99,8 @@ public: ~LLViewerRegion(); // Call this after you have the region name and handle. - void loadCache(); - - void saveCache(); + void loadObjectCache(); + void saveObjectCache(); void sendMessage(); // Send the current message to this region's simulator void sendReliableMessage(); // Send the current message to this region's simulator @@ -330,6 +329,9 @@ public: LLDynamicArray<LLUUID> mMapAvatarIDs; private: + // determine the cache filename for the region from the region handle + const std::string getObjectCacheFilename(U64 mHandle) const; + // The surfaces and other layers LLSurface* mLandp; @@ -404,7 +406,7 @@ private: // Cache ID is unique per-region, across renames, moving locations, // etc. LLUUID mCacheID; - + typedef std::map<std::string, std::string> CapabilityMap; CapabilityMap mCapabilities; |