diff options
author | Jacek Antonelli | 2008-08-15 23:45:02 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:02 -0500 |
commit | d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd (patch) | |
tree | 7ed0c2c27d717801238a2e6b5749cd5bf88c3059 /linden/indra/newview/lleventpoll.h | |
parent | Second Life viewer sources 1.17.3.0 (diff) | |
download | meta-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.h | 7 |
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 | |||
32 | class LLEventPoll | 34 | class 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 | { |
35 | public: | 37 | public: |
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 | ||
43 | private: | 45 | private: |
44 | class Impl; | 46 | LLHTTPClient::ResponderPtr mImpl; |
45 | Impl& impl; | ||
46 | }; | 47 | }; |
47 | 48 | ||
48 | 49 | ||