sqry_lang_cpp/relations/mod.rs
1//! Relation extraction helpers for the C++ plugin.
2//!
3//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.
4
5pub mod graph_builder;
6pub mod queries;
7
8pub use graph_builder::CppGraphBuilder;