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 | 81817394716c2666d373f0ea71796c0176c5c27f (patch) | |
| tree | b5e1245eb7d75c1ab1ee5c0530d8006a2255759a | |
| parent | 170c7b56a8a4f2520109eecda78229e648ccc49c (diff) | |
fixed windows build
| -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 | 
