| 27 | |
| 28 | |
| 29 | class IConnectionPointContainer(IUnknown): |
| 30 | _iid_ = GUID("{B196B284-BAB4-101A-B69C-00AA00341D07}") |
| 31 | _idlflags_ = [] |
| 32 | |
| 33 | if TYPE_CHECKING: |
| 34 | |
| 35 | def EnumConnectionPoints(self) -> "IEnumConnectionPoints": ... |
| 36 | def FindConnectionPoint(self, riid: REFIID) -> "IConnectionPoint": ... |
| 37 | |
| 38 | |
| 39 | class IConnectionPoint(IUnknown): |
nothing calls this directly
no test coverage detected
searching dependent graphs…