Stores information about an 'extern "C"' block.
| 3070 | |
| 3071 | |
| 3072 | class _ExternCInfo(_BlockInfo): |
| 3073 | """Stores information about an 'extern "C"' block.""" |
| 3074 | |
| 3075 | def __init__(self, linenum): |
| 3076 | _BlockInfo.__init__(self, linenum, True) |
| 3077 | |
| 3078 | |
| 3079 | class _ClassInfo(_BlockInfo): |
no outgoing calls
no test coverage detected
searching dependent graphs…