| 14 | public: |
| 15 | |
| 16 | MethodDef( |
| 17 | const char *name, |
| 18 | funcPtr ptr, |
| 19 | unsigned int num, |
| 20 | BaseSignature *signature, |
| 21 | TypeFlags flags |
| 22 | ) : name(name), ptr(ptr), num(num), signature(signature), flags(flags) {} |
| 23 | |
| 24 | const char *getName() const { return(name); } |
| 25 | funcPtr getPtr() const { return(ptr); } |
nothing calls this directly
no outgoing calls
no test coverage detected