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