Extract functions, classes, and includes from a .cpp/.cc/.cxx/.hpp file.
(path: Path)
| 6466 | |
| 6467 | |
| 6468 | def extract_cpp(path: Path) -> dict: |
| 6469 | """Extract functions, classes, and includes from a .cpp/.cc/.cxx/.hpp file.""" |
| 6470 | return _extract_generic(path, _CPP_CONFIG) |
| 6471 | |
| 6472 | |
| 6473 | def extract_ruby(path: Path) -> dict: |