diff options
author | brad kittenbrink <brad@lindenlab.com> | 2009-07-10 13:15:06 -0700 |
---|---|---|
committer | brad kittenbrink <brad@lindenlab.com> | 2009-07-10 13:15:06 -0700 |
commit | 9bc9a696882859d8194646d25bc606cdadd06fc2 (patch) | |
tree | bed50d6c1c8b139e9bc200c00003493933f63fb3 /indra/llui | |
parent | 3013aa1c847ac8884ca7b287fd1406b3fc2393ab (diff) | |
parent | 82eb18fce5c3d21a49a299ee5e454cbcc9d6f559 (diff) |
Merged in my latest changes including switching LLAPRSockStream to be fully non-blocking (and thus not horribly inefficient) and a bunch of new event listener implementations.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llnotificationslistener.cpp | 12 | ||||
-rw-r--r-- | indra/llui/llnotificationslistener.h | 32 |
2 files changed, 22 insertions, 22 deletions
diff --git a/indra/llui/llnotificationslistener.cpp b/indra/llui/llnotificationslistener.cpp index d2d83bd6e3..d6e552ca5c 100644 --- a/indra/llui/llnotificationslistener.cpp +++ b/indra/llui/llnotificationslistener.cpp @@ -14,12 +14,12 @@ #include "llnotificationslistener.h" #include "llnotifications.h" -
-LLNotificationsListener::LLNotificationsListener(LLNotifications & notifications) :
- LLDispatchListener("LLNotifications", "op"),
- mNotifications(notifications)
-{
- add("requestAdd", &LLNotificationsListener::requestAdd);
+ +LLNotificationsListener::LLNotificationsListener(LLNotifications & notifications) : + LLDispatchListener("LLNotifications", "op"), + mNotifications(notifications) +{ + add("requestAdd", &LLNotificationsListener::requestAdd); } void LLNotificationsListener::requestAdd(const LLSD& event_data) const diff --git a/indra/llui/llnotificationslistener.h b/indra/llui/llnotificationslistener.h index a163b00550..3576cacbdb 100644 --- a/indra/llui/llnotificationslistener.h +++ b/indra/llui/llnotificationslistener.h @@ -13,19 +13,19 @@ #define LL_LLNOTIFICATIONSLISTENER_H #include "lleventdispatcher.h" -
-class LLNotifications;
-class LLSD;
-
-class LLNotificationsListener : public LLDispatchListener
-{
-public:
- LLNotificationsListener(LLNotifications & notifications);
-
- void requestAdd(LLSD const & event_data) const;
-
-private:
- LLNotifications & mNotifications;
-};
-
-#endif // LL_LLNOTIFICATIONSLISTENER_H
+ +class LLNotifications; +class LLSD; + +class LLNotificationsListener : public LLDispatchListener +{ +public: + LLNotificationsListener(LLNotifications & notifications); + + void requestAdd(LLSD const & event_data) const; + +private: + LLNotifications & mNotifications; +}; + +#endif // LL_LLNOTIFICATIONSLISTENER_H |