diff options
author | Richard Linden <none@none> | 2010-12-08 16:04:07 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2010-12-08 16:04:07 -0800 |
commit | ca2141ce90d484284bf57d72feb82e290958b061 (patch) | |
tree | 0e2ea77f0b7c2a9c9f9e69c09c0be22567afac3b /indra/llui/llnotificationtemplate.h | |
parent | d9b4570883652d647c05083c18fac1a088efd6e2 (diff) | |
parent | c28b476a6806a426593e6798ea537f13ca354fc8 (diff) |
merge with viewer-dev
Diffstat (limited to 'indra/llui/llnotificationtemplate.h')
-rw-r--r-- | indra/llui/llnotificationtemplate.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/indra/llui/llnotificationtemplate.h b/indra/llui/llnotificationtemplate.h index 6bc0d2aaff..5a6ab40a2e 100644 --- a/indra/llui/llnotificationtemplate.h +++ b/indra/llui/llnotificationtemplate.h @@ -156,6 +156,15 @@ struct LLNotificationTemplate {} }; + struct Tag : public LLInitParam::Block<Tag> + { + Mandatory<std::string> value; + + Tag() + : value("value") + {} + }; + struct Params : public LLInitParam::Block<Params> { Mandatory<std::string> name; @@ -173,6 +182,7 @@ struct LLNotificationTemplate Optional<FormRef> form_ref; Optional<ENotificationPriority, NotificationPriorityValues> priority; + Multiple<Tag> tags; Params() @@ -189,7 +199,8 @@ struct LLNotificationTemplate expire_option("expireOption", -1), url("url"), unique("unique"), - form_ref("") + form_ref(""), + tags("tag") {} }; @@ -276,6 +287,8 @@ struct LLNotificationTemplate // this is loaded as a name, but looked up to get the UUID upon template load. // If null, it wasn't specified. LLUUID mSoundEffect; + // List of tags that rules can match against. + std::list<std::string> mTags; }; #endif //LL_LLNOTIFICATION_TEMPLATE_H |