| 223 | |
| 224 | |
| 225 | CMemberFunction2(const char *inName, hx::Object *inObj, MemberFunction2 inFunction) |
| 226 | { |
| 227 | mName = inName; |
| 228 | mThis = inObj; |
| 229 | mFunction = inFunction; |
| 230 | } |
| 231 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 232 | { |
| 233 | const CMemberFunction2 *other = dynamic_cast<const CMemberFunction2 *>(inRHS); |
nothing calls this directly
no outgoing calls
no test coverage detected