(self, interfacetype)
| 45 | |
| 46 | # Simplified API for QueryInterface for interface embeding there IID |
| 47 | def query(self, interfacetype): |
| 48 | interface = interfacetype() |
| 49 | self.QueryInterface(interface.IID, interface) |
| 50 | return interface |
| 51 | |
| 52 | |
| 53 |
nothing calls this directly
no test coverage detected