Stores information about an 'extern "C"' block.
| 2258 | |
| 2259 | |
| 2260 | class _ExternCInfo(_BlockInfo): |
| 2261 | """Stores information about an 'extern "C"' block.""" |
| 2262 | |
| 2263 | def __init__(self, linenum): |
| 2264 | _BlockInfo.__init__(self, linenum, True) |
| 2265 | |
| 2266 | |
| 2267 | class _ClassInfo(_BlockInfo): |