Source code for sphinx_immaterial.apidoc.cpp.external_cpp_references
"""Support for cross-referencing externally-defined C++ symbols.The builtin `sphinx.ext.intersphinx` extension does not work well for C++because it only supports exact reference matches. Consequently, a reference to`std::vector<int>` will not find a more general `std::vector` entry.This extension implements the simple solution of stripping off all templatearguments when matching, which is not perfect but handles the most common usecases."""importrefromtypingimportDict,List,NamedTuple,Optional,TypedDictimportdocutils.nodesimportsphinx.addnodesimportsphinx.applicationimportsphinx.environmentclassObjectInfo(NamedTuple):url:strdesc:strobject_type:str
[docs]classExternalCppReference(TypedDict):"""A class used to represent each dictionary field's value specified in :confval:`external_cpp_references`."""url:str"""URL to use as the target for references to this symbol."""object_type:str"""C++ object type. This should be one of the object types defined by the C++ domain: .. hlist:: - :python:`"class"` - :python:`"union"` - :python:`"function"` - :python:`"member"` - :python:`"type"` - :python:`"concept"` - :python:`"enum"` - :python:`"enumerator"` """desc:str"""Description text to include in the tooltip."""