com_scrape/lib.rs
1//! `com-scrape` is a tool for automatically generating Rust bindings for COM interfaces defined in
2//! C++. `com-scrape` is developed specifically for use in the `vst3` crate, and as such,
3//! robustness for arbitrary C++ inputs is a non-goal.
4
5mod clang;
6mod generator;
7mod parse;
8mod print;
9
10pub use generator::Generator;