diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-07-18 23:50:50 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-07-18 23:50:50 -0500 | 
| commit | 7ef1550fbb01acfb0cba0e849f1933462612784a (patch) | |
| tree | dde820baa0134031d46b0c117ad34545d9e8cfe9 /indra/newview/llviewerobject.h | |
| parent | 4dc0850da7469906e5ad052da71830b05005295b (diff) | |
| parent | e8b71e0585ab126f9e77da93d6830a1a73a7aa92 (diff) | |
merge
Diffstat (limited to 'indra/newview/llviewerobject.h')
| -rw-r--r-- | indra/newview/llviewerobject.h | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llviewerobject.h b/indra/newview/llviewerobject.h index 7ebcee7b74..1828a64917 100644 --- a/indra/newview/llviewerobject.h +++ b/indra/newview/llviewerobject.h @@ -44,11 +44,11 @@  #include "v3math.h"  #include "llvertexbuffer.h"  #include "llaccountingquota.h" +#include "llbbox.h"  class LLAgent;			// TODO: Get rid of this.  class LLAudioSource;  class LLAudioSourceVO; -class LLBBox;  class LLDataPacker;  class LLColor4;  class LLFrameTimer; @@ -112,6 +112,12 @@ public:  	LLColor4	mColor;  }; +struct PotentialReturnableObject +{ +	LLBBox			box; +	LLViewerRegion* pRegion; +}; +  //============================================================================  class LLViewerObject : public LLPrimitive, public LLRefCount, public LLGLUpdate @@ -234,6 +240,9 @@ public:  	// anti-encroachment is enabled  	bool isReturnable(); +	void buildReturnablesForChildrenVO( std::vector<PotentialReturnableObject>& returnables, LLViewerObject* pChild, LLViewerRegion* pTargetRegion ); +	void constructAndAddReturnable( std::vector<PotentialReturnableObject>& returnables, LLViewerObject* pChild, LLViewerRegion* pTargetRegion ); +  	/*  	// This method will scan through this object, and then query the  	// selection manager to see if the local agent probably has the  | 
