summaryrefslogtreecommitdiff
path: root/indra/newview/llavatarpropertiesprocessor.h
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-11-06 17:13:51 +0100
committerGuru <alexandrgproductengine@lindenlab.com>2023-11-06 19:40:19 +0100
commit85c4ea76b9a3193dd338bca5c571b84bebf6b38c (patch)
tree123361b6de21a0326293ae0b9c5c5f9782583c96 /indra/newview/llavatarpropertiesprocessor.h
parent62f864c04539b0db7069d75f471778b9b77d5b9e (diff)
SL-20163 Allow residents to hide exact join date on profiles (check server support)
Diffstat (limited to 'indra/newview/llavatarpropertiesprocessor.h')
-rw-r--r--indra/newview/llavatarpropertiesprocessor.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llavatarpropertiesprocessor.h b/indra/newview/llavatarpropertiesprocessor.h
index 1bf07704a9..99ed110487 100644
--- a/indra/newview/llavatarpropertiesprocessor.h
+++ b/indra/newview/llavatarpropertiesprocessor.h
@@ -217,6 +217,8 @@ public:
void sendClassifiedDelete(const LLUUID& classified_id);
+ bool isHideAgeSupportedByServer() { return mIsHideAgeSupportedByServer; }
+
// Returns translated, human readable string for account type, such
// as "Resident" or "Linden Employee". Used for profiles, inspectors.
static std::string accountType(const LLAvatarData* avatar_data);
@@ -274,6 +276,9 @@ protected:
// Map avatar_id+request_type -> U32 timestamp in seconds
typedef std::map< std::pair<LLUUID, EAvatarProcessorType>, U32> timestamp_map_t;
timestamp_map_t mRequestTimestamps;
+
+ // Is returned by isHideAgeSupportedByServer()
+ bool mIsHideAgeSupportedByServer { false };
};
#endif // LL_LLAVATARPROPERTIESPROCESSOR_H