cpp_to_rust 0.1.1

Automatic generator of C++ library wrappers
use cpp_data::EnumValue;
use cpp_type::CppType;

#[derive(Debug, PartialEq, Eq, Clone)]
pub enum DocCppTypeKind {
  CPrimitive,
  Enum {
    values: Vec<EnumValue>,
  },
  Flags {
    enum_name: String,
  },
  TypeDef {
    meaning: CppType,
  },
  Class {
    inherits: Option<CppType>,
  },
  Unknown,
}