Stores information about an 'extern "C"' block.
| 2744 | |
| 2745 | |
| 2746 | class _ExternCInfo(_BlockInfo): |
| 2747 | """Stores information about an 'extern "C"' block.""" |
| 2748 | |
| 2749 | def __init__(self, linenum): |
| 2750 | _BlockInfo.__init__(self, linenum, True) |
| 2751 | |
| 2752 | |
| 2753 | class _ClassInfo(_BlockInfo): |