diff options
author | Richard Nelson <none@none> | 2010-07-30 16:07:08 -0700 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-07-30 16:07:08 -0700 |
commit | 6adbeb504d024653bca73e16a17efcac90bcfea0 (patch) | |
tree | b5e1245eb7d75c1ab1ee5c0530d8006a2255759a /indra | |
parent | c60fd88714727a86d5b905c1986bc2ca6013791e (diff) |
fixed windows build
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llmediadataclient.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llmediadataclient.h b/indra/newview/llmediadataclient.h index 3961442412..25b55b4705 100755 --- a/indra/newview/llmediadataclient.h +++ b/indra/newview/llmediadataclient.h @@ -75,6 +75,7 @@ public: typedef LLPointer<LLMediaDataClientObject> ptr_t; }; + // This object creates a priority queue for requests. // Abstracts the Cap URL, the request, and the responder class LLMediaDataClient : public LLRefCount @@ -282,9 +283,12 @@ private: void setIsRunning(bool val) { mQueueTimerIsRunning = val; } bool mQueueTimerIsRunning; - -}; + template <typename T> friend typename T::iterator find_matching_request(T &c, const LLMediaDataClient::Request *request, LLMediaDataClient::Request::Type match_type); + template <typename T> friend typename T::iterator find_matching_request(T &c, const LLUUID &id, LLMediaDataClient::Request::Type match_type); + template <typename T> friend void remove_matching_requests(T &c, const LLUUID &id, LLMediaDataClient::Request::Type match_type); + +}; // MediaDataClient specific for the ObjectMedia cap class LLObjectMediaDataClient : public LLMediaDataClient |