aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lleventpoll.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:02 -0500
committerJacek Antonelli2008-08-15 23:45:02 -0500
commitd644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd (patch)
tree7ed0c2c27d717801238a2e6b5749cd5bf88c3059 /linden/indra/newview/lleventpoll.h
parentSecond Life viewer sources 1.17.3.0 (diff)
downloadmeta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.zip
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.gz
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.bz2
meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.xz
Second Life viewer sources 1.18.0.6
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/lleventpoll.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/lleventpoll.h b/linden/indra/newview/lleventpoll.h
index 4c06a43..a9a533d 100644
--- a/linden/indra/newview/lleventpoll.h
+++ b/linden/indra/newview/lleventpoll.h
@@ -29,11 +29,13 @@
29#ifndef LL_LLEVENTPOLL_H 29#ifndef LL_LLEVENTPOLL_H
30#define LL_LLEVENTPOLL_H 30#define LL_LLEVENTPOLL_H
31 31
32#include "llhttpclient.h"
33
32class LLEventPoll 34class LLEventPoll
33 ///< implements the viewer side of server-to-viewer pushed events. 35 ///< implements the viewer side of server-to-viewer pushed events.
34{ 36{
35public: 37public:
36 LLEventPoll(const std::string& pollURL); 38 LLEventPoll(const std::string& pollURL, const LLHost& sender);
37 ///< Start polling the URL. 39 ///< Start polling the URL.
38 40
39 virtual ~LLEventPoll(); 41 virtual ~LLEventPoll();
@@ -41,8 +43,7 @@ public:
41 43
42 44
43private: 45private:
44 class Impl; 46 LLHTTPClient::ResponderPtr mImpl;
45 Impl& impl;
46}; 47};
47 48
48 49