Stores information about an 'extern "C"' block.
| 2253 | |
| 2254 | |
| 2255 | class _ExternCInfo(_BlockInfo): |
| 2256 | """Stores information about an 'extern "C"' block.""" |
| 2257 | |
| 2258 | def __init__(self, linenum): |
| 2259 | _BlockInfo.__init__(self, linenum, True) |
| 2260 | |
| 2261 | |
| 2262 | class _ClassInfo(_BlockInfo): |
no outgoing calls
no test coverage detected
searching dependent graphs…