diff options
author | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
commit | c07901e29ed545bbb02e3bddf148fe1104b94e9f (patch) | |
tree | f1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/llinventory/llparcel.h | |
parent | Second Life viewer sources 1.15.0.2 (diff) | |
download | meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.zip meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.gz meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.bz2 meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.xz |
Second Life viewer sources 1.15.1.3
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llinventory/llparcel.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llinventory/llparcel.h b/linden/indra/llinventory/llparcel.h index 29e393a..cc20182 100644 --- a/linden/indra/llinventory/llparcel.h +++ b/linden/indra/llinventory/llparcel.h | |||
@@ -246,6 +246,7 @@ public: | |||
246 | BOOL importStream(std::istream& input_stream); | 246 | BOOL importStream(std::istream& input_stream); |
247 | BOOL importAccessEntry(std::istream& input_stream, LLAccessEntry* entry); | 247 | BOOL importAccessEntry(std::istream& input_stream, LLAccessEntry* entry); |
248 | BOOL exportStream(std::ostream& output_stream); | 248 | BOOL exportStream(std::ostream& output_stream); |
249 | virtual LLSD asLLSD() const; | ||
249 | 250 | ||
250 | void packMessage(LLMessageSystem* msg); | 251 | void packMessage(LLMessageSystem* msg); |
251 | void unpackMessage(LLMessageSystem* msg); | 252 | void unpackMessage(LLMessageSystem* msg); |
@@ -274,7 +275,7 @@ public: | |||
274 | BOOL removeFromBanList(const LLUUID& agent_id); | 275 | BOOL removeFromBanList(const LLUUID& agent_id); |
275 | 276 | ||
276 | // ACCESSORS | 277 | // ACCESSORS |
277 | const LLUUID& getID() { return mID; } | 278 | const LLUUID& getID() const { return mID; } |
278 | const char* getName() const { return mName.c_str(); } | 279 | const char* getName() const { return mName.c_str(); } |
279 | const char* getDesc() const { return mDesc.c_str(); } | 280 | const char* getDesc() const { return mDesc.c_str(); } |
280 | const char* getMusicURL() const { return mMusicURL.c_str(); } | 281 | const char* getMusicURL() const { return mMusicURL.c_str(); } |
@@ -283,14 +284,13 @@ public: | |||
283 | const U8 getMediaAutoScale() const { return mMediaAutoScale; } | 284 | const U8 getMediaAutoScale() const { return mMediaAutoScale; } |
284 | S32 getLocalID() const { return mLocalID; } | 285 | S32 getLocalID() const { return mLocalID; } |
285 | const LLUUID& getOwnerID() const { return mOwnerID; } | 286 | const LLUUID& getOwnerID() const { return mOwnerID; } |
286 | const LLUUID& getGroupID() const { return mGroupID; } | 287 | const LLUUID& getGroupID() const { return mGroupID; } |
287 | //const char* getGroupName() const { return mGroupName.c_str(); } | ||
288 | S32 getPassPrice() const { return mPassPrice; } | 288 | S32 getPassPrice() const { return mPassPrice; } |
289 | F32 getPassHours() const { return mPassHours; } | 289 | F32 getPassHours() const { return mPassHours; } |
290 | BOOL getIsGroupOwned() const { return mGroupOwned; } | 290 | BOOL getIsGroupOwned() const { return mGroupOwned; } |
291 | 291 | ||
292 | U32 getAuctionID() { return mAuctionID; } | 292 | U32 getAuctionID() const { return mAuctionID; } |
293 | bool isInEscrow() const { return mInEscrow; } | 293 | bool isInEscrow() const { return mInEscrow; } |
294 | 294 | ||
295 | BOOL isPublic() const; | 295 | BOOL isPublic() const; |
296 | 296 | ||