Stores information about an 'extern "C"' block.
| 3010 | |
| 3011 | |
| 3012 | class _ExternCInfo(_BlockInfo): |
| 3013 | """Stores information about an 'extern "C"' block.""" |
| 3014 | |
| 3015 | def __init__(self, linenum): |
| 3016 | _BlockInfo.__init__(self, linenum, True) |
| 3017 | |
| 3018 | |
| 3019 | class _ClassInfo(_BlockInfo): |