summaryrefslogtreecommitdiff
path: root/indra/newview/llnotificationstorage.h
diff options
context:
space:
mode:
authorWilliam Todd Stinson <stinson@lindenlab.com>2012-12-18 23:07:27 -0800
committerWilliam Todd Stinson <stinson@lindenlab.com>2012-12-18 23:07:27 -0800
commit6b9ead91459d702727b54ab7e51614c2d5959f5f (patch)
treea58442e1412a466972a5e890ecd522540156e7f2 /indra/newview/llnotificationstorage.h
parentda59ef8013801eac3695cea0ae8c1097275b6832 (diff)
CHUI-499: Refactoring the LLPersistentNotificationStorage implementation for shared usage with the new LLDoNotDisturbNotificationStorage class.
Diffstat (limited to 'indra/newview/llnotificationstorage.h')
-rw-r--r--indra/newview/llnotificationstorage.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llnotificationstorage.h b/indra/newview/llnotificationstorage.h
index ab4da4e73f..7aabf7d09e 100644
--- a/indra/newview/llnotificationstorage.h
+++ b/indra/newview/llnotificationstorage.h
@@ -31,6 +31,7 @@
#include "llerror.h"
+class LLNotificationResponderInterface;
class LLSD;
class LLNotificationStorage
@@ -44,6 +45,8 @@ protected:
bool writeNotifications(const LLSD& pNotificationData) const;
bool readNotifications(LLSD& pNotificationData) const;
+ LLNotificationResponderInterface* createResponder(const std::string& pNotificationName, const LLSD& pParams) const;
+
private:
std::string mFileName;
};