C++ API reference¶
The full Doxygen-generated API reference lives at
/api/ — every class, struct, free
function and macro the C++ codebase declares, with cross-linked
include / inheritance / call graphs.
Previewing locally?
mkdocs serve / nix run .#docs-serve only renders the user
docs — clicking the link above shows a placeholder. To browse the
real API output locally, run
nix run .#docs-full-serve instead and reload. (Same flake
app, but it generates Doxygen, merges it in, and static-serves
the combined site on the right path.)
When to use this¶
Reach for the API reference when you are:
- Adding a feature that talks to an existing module (Recorder, Portal, Canvas, Merger, …). The Doxygen pages show every public method's signature, parameters, and the brief comment from the header.
- Tracing a bug through cross-module calls. Use the call graphs (each function page links into and out of it) to follow data flow.
- Writing tests. The class summaries highlight which methods are
public slotsvs internal helpers — useful when wiring a test harness.
When to use the source instead¶
The Architecture page in this guide (Architecture) is the right starting point for why a module exists; the API reference is for what it exposes. If you want to see how the modules talk to each other at runtime, read Capture pipelines first.
How it stays current¶
The Doxygen output is regenerated on every push to main by the
📚 Docs
workflow, copied into site/api/, and published as part of the same
GitHub Pages deploy as the rest of this site. Locally: