Macro cpp::cpp [] [src]

macro_rules! cpp {
    ({$($body:tt)*}) => { ... };
    ([$($captures:tt)*] $($rest:tt)*) => { ... };
}

This macro is used to embed arbitrary C++ code. See the module level documentation for more details.