summaryrefslogtreecommitdiff
path: root/indra/newview/lleventpoll.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lleventpoll.h')
-rw-r--r--indra/newview/lleventpoll.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/lleventpoll.h b/indra/newview/lleventpoll.h
index c2d798360f..a9c9d2ceab 100644
--- a/indra/newview/lleventpoll.h
+++ b/indra/newview/lleventpoll.h
@@ -9,11 +9,13 @@
#ifndef LL_LLEVENTPOLL_H
#define LL_LLEVENTPOLL_H
+#include "llhttpclient.h"
+
class LLEventPoll
///< implements the viewer side of server-to-viewer pushed events.
{
public:
- LLEventPoll(const std::string& pollURL);
+ LLEventPoll(const std::string& pollURL, const LLHost& sender);
///< Start polling the URL.
virtual ~LLEventPoll();
@@ -21,8 +23,7 @@ public:
private:
- class Impl;
- Impl& impl;
+ LLHTTPClient::ResponderPtr mImpl;
};