diff options
author | Palmer Truelson <palmer@lindenlab.com> | 2009-06-26 12:17:35 +0000 |
---|---|---|
committer | Palmer Truelson <palmer@lindenlab.com> | 2009-06-26 12:17:35 +0000 |
commit | e2655d4c4b38ad2336ad136a057d315e31195080 (patch) | |
tree | 108ec4f36f6465f5d7d7e374f0b1fa2e78a18362 /indra/llui/llnotifications.h | |
parent | 572ee5c9db2aeec17e1cc7e6c69c72ad8c7ff6fc (diff) |
DEV-34569
new --nonotifications command line option for automated testing
Reviewed by Q
Diffstat (limited to 'indra/llui/llnotifications.h')
-rw-r--r-- | indra/llui/llnotifications.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index b749724b4e..512886790c 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -870,6 +870,9 @@ public: std::string getGlobalString(const std::string& key) const; + void setIgnoreAllNotifications(bool ignore); + bool getIgnoreAllNotifications(); + private: // we're a singleton, so we don't have a public constructor LLNotifications(); @@ -898,6 +901,8 @@ private: typedef std::map<std::string, std::string> GlobalStringMap; GlobalStringMap mGlobalStrings; + + bool mIgnoreAllNotifications; }; |