Check if the parameter passed in is a pointer. param the XML information for the param
(self, param)
| 1336 | return param.get('len') is not None |
| 1337 | |
| 1338 | def paramIsPointer(self, param): |
| 1339 | """Check if the parameter passed in is a pointer. |
| 1340 | |
| 1341 | param the XML information for the param |
| 1342 | """ |
| 1343 | tail = param.find('type').tail |
| 1344 | return tail is not None and '*' in tail |
| 1345 | |
| 1346 | def isEnumRequired(self, elem): |
| 1347 | """Return True if this `<enum>` element is |
no outgoing calls
no test coverage detected