diff options
author | simon <simon@lindenlab.com> | 2023-05-15 23:24:00 +0100 |
---|---|---|
committer | simon <simon@lindenlab.com> | 2023-05-15 23:24:00 +0100 |
commit | 2dca661b6a7b40c1dcf94a08f5304df277542597 (patch) | |
tree | d2fb6ebed3a83b351746ce74c21943f1881714ca /indra/newview/llviewerregion.h | |
parent | 74687f270545ededb77f29a7409f64303dcb2e2d (diff) |
SL-19676 - more IL control, added Reset Interest List Debug menu command
Diffstat (limited to 'indra/newview/llviewerregion.h')
-rw-r--r-- | indra/newview/llviewerregion.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llviewerregion.h b/indra/newview/llviewerregion.h index 6308058f63..6956e9eb08 100644 --- a/indra/newview/llviewerregion.h +++ b/indra/newview/llviewerregion.h @@ -287,6 +287,7 @@ public: httpCallback_t cbSuccess = NULL, httpCallback_t cbFailure = NULL); bool requestGetCapability(const std::string &capName, httpCallback_t cbSuccess = NULL, httpCallback_t cbFailure = NULL); + bool requestDelCapability(const std::string &capName, httpCallback_t cbSuccess = NULL, httpCallback_t cbFailure = NULL); /// implements LLCapabilityProvider /*virtual*/ const LLHost& getHost() const; @@ -490,6 +491,8 @@ public: void setInterestListMode(const std::string & new_mode); const std::string & getInterestListMode() const { return mInterestListMode; } + void resetInterestList(); + static const std::string IL_MODE_DEFAULT; static const std::string IL_MODE_360; |