| 27 | mFunction = inFunction; |
| 28 | } |
| 29 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 30 | { |
| 31 | const CMemberFunction0 *other = dynamic_cast<const CMemberFunction0 *>(inRHS); |
| 32 | if (!other) |
| 33 | return -1; |
| 34 | return (mName==other->mName && mFunction==other->mFunction && mThis.GetPtr()==other->mThis.GetPtr())? 0 : -1; |
| 35 | } |
| 36 | |
| 37 | int __GetType() const HXCPP_OVERRIDE { return vtFunction; } |
| 38 | int __ArgCount() const HXCPP_OVERRIDE { return 0; } |