diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llwearablelist.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2 meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz |
Second Life viewer sources 1.19.1.0
Diffstat (limited to 'linden/indra/newview/llwearablelist.h')
-rw-r--r-- | linden/indra/newview/llwearablelist.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/linden/indra/newview/llwearablelist.h b/linden/indra/newview/llwearablelist.h index e7acdd5..cd15b78 100644 --- a/linden/indra/newview/llwearablelist.h +++ b/linden/indra/newview/llwearablelist.h | |||
@@ -33,7 +33,6 @@ | |||
33 | #define LL_LLWEARABLELIST_H | 33 | #define LL_LLWEARABLELIST_H |
34 | 34 | ||
35 | #include "llwearable.h" | 35 | #include "llwearable.h" |
36 | #include "llskiplist.h" | ||
37 | #include "lluuid.h" | 36 | #include "lluuid.h" |
38 | #include "llassetstorage.h" | 37 | #include "llassetstorage.h" |
39 | 38 | ||
@@ -43,9 +42,7 @@ public: | |||
43 | LLWearableList() {} | 42 | LLWearableList() {} |
44 | ~LLWearableList(); | 43 | ~LLWearableList(); |
45 | 44 | ||
46 | S32 getLength() { return mList.getLength(); } | 45 | S32 getLength() { return mList.size(); } |
47 | const LLWearable* getFirst() { return mList.getFirstData(); } | ||
48 | const LLWearable* getNext() { return mList.getNextData(); } | ||
49 | 46 | ||
50 | void getAsset( | 47 | void getAsset( |
51 | const LLAssetID& assetID, | 48 | const LLAssetID& assetID, |
@@ -65,7 +62,7 @@ public: | |||
65 | static void processGetAssetReply(const char* filename, const LLAssetID& assetID, void* user_data, S32 status, LLExtStat ext_status); | 62 | static void processGetAssetReply(const char* filename, const LLAssetID& assetID, void* user_data, S32 status, LLExtStat ext_status); |
66 | 63 | ||
67 | protected: | 64 | protected: |
68 | LLPtrSkipMap< const LLUUID, LLWearable* > mList; | 65 | std::map< LLUUID, LLWearable* > mList; |
69 | }; | 66 | }; |
70 | 67 | ||
71 | extern LLWearableList gWearableList; | 68 | extern LLWearableList gWearableList; |