Home | History | Annotate | Download | only in handler

Lines Matching refs:DynamicImageRef

201 // DynamicImageRef is just a simple wrapper for a pointer to
206 class DynamicImageRef {
208 explicit DynamicImageRef(DynamicImage *inP) : p(inP) {}
210 DynamicImageRef(const DynamicImageRef &inRef) : p(inRef.p) {}
212 bool operator<(const DynamicImageRef &inRef) const {
213 return (*const_cast<DynamicImageRef*>(this)->p)
214 < (*const_cast<DynamicImageRef&>(inRef).p);
217 bool operator==(const DynamicImageRef &inInfo) const {
218 return (*const_cast<DynamicImageRef*>(this)->p).GetLoadAddress() ==
219 (*const_cast<DynamicImageRef&>(inInfo)).GetLoadAddress();
307 vector<DynamicImageRef> image_list_;