summaryrefslogtreecommitdiff
path: root/indra/newview/llestateinfomodel.h
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2017-03-10 15:07:55 -0800
committerRider Linden <rider@lindenlab.com>2017-03-10 15:07:55 -0800
commit880be86cf2f8d7cb7e948d8a456fd8cf5723b3f2 (patch)
tree3ee5ec8488536d308e774e63dcaa24a3a77ada6b /indra/newview/llestateinfomodel.h
parent08ed7f676f2ce38937a03c2a4e823e3564981264 (diff)
MAINT-7196: Viewer changes supporting new Allow Access Override opition for estate owners.
Diffstat (limited to 'indra/newview/llestateinfomodel.h')
-rw-r--r--indra/newview/llestateinfomodel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llestateinfomodel.h b/indra/newview/llestateinfomodel.h
index e7a6a2a725..566cde34eb 100644
--- a/indra/newview/llestateinfomodel.h
+++ b/indra/newview/llestateinfomodel.h
@@ -55,6 +55,7 @@ public:
bool getDenyAnonymous() const;
bool getDenyAgeUnverified() const;
bool getAllowVoiceChat() const;
+ bool getAllowAccessOverride() const;
const std::string& getName() const { return mName; }
const LLUUID& getOwnerID() const { return mOwnerID; }
@@ -68,6 +69,7 @@ public:
void setDenyAnonymous(bool val);
void setDenyAgeUnverified(bool val);
void setAllowVoiceChat(bool val);
+ void setAllowAccessOverride(bool val);
void setSunHour(F32 sun_hour) { mSunHour = sun_hour; }
@@ -82,8 +84,6 @@ protected:
void notifyCommit();
private:
- bool commitEstateInfoCaps();
- void commitEstateInfoDataserver();
inline bool getFlag(U64 flag) const;
inline void setFlag(U64 flag, bool val);
U64 getFlags() const { return mFlags; }