mock_gen 0.1.22

Interface and mock generator for C++ classes
1
2
3
4
5
6
7
8
//! Crate preuluide

pub use crate::error::Error;

pub type Result<T> = core::result::Result<T, Error>;

//Generic wrapper tuple struct for newtype pattern
pub struct W<T>(pub T);