MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_cpp

Function extract_cpp

graphify/extract.py:6468–6470  ·  view source on GitHub ↗

Extract functions, classes, and includes from a .cpp/.cc/.cxx/.hpp file.

(path: Path)

Source from the content-addressed store, hash-verified

6466
6467
6468def 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
6473def extract_ruby(path: Path) -> dict:

Calls 1

_extract_genericFunction · 0.85