| 122 | |
| 123 | |
| 124 | CMemberFunction1(const char *inName, hx::Object *inObj, MemberFunction1 inFunction) |
| 125 | { |
| 126 | mName = inName; |
| 127 | mThis = inObj; |
| 128 | mFunction = inFunction; |
| 129 | } |
| 130 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 131 | { |
| 132 | const CMemberFunction1 *other = dynamic_cast<const CMemberFunction1 *>(inRHS); |
nothing calls this directly
no outgoing calls
no test coverage detected