use std::collections::HashSet;
use once_cell::sync::Lazy;
pub static IMPLEMENTED_FUNCTION_LIKE_MACROS: Lazy<HashSet<&str>> = Lazy::new(|| HashSet::from(["CV_MAKETYPE"]));
pub static IMPLEMENTED_SYSTEM_CLASSES: Lazy<HashSet<&str>> = Lazy::new(|| {
HashSet::from([
"std::pair",
"std::string",
"std::tuple",
"std::vector",
"ID3D11Device",
"ID3D11Texture2D",
"ID3D10Device",
"ID3D10Texture2D",
"IDirect3DDevice9",
"IDirect3DDevice9Ex",
"IDirect3DSurface9",
])
});
pub static IMPLEMENTED_MANUAL_DEBUG: Lazy<HashSet<&str>> =
Lazy::new(|| HashSet::from(["cv::Mat", "cv::MatSize", "cv::dnn::DictValue"]));
pub static IMPLEMENTED_CONST_GENERICS: Lazy<HashSet<&str>> = Lazy::new(|| HashSet::from(["cv::Vec"]));
pub static IMPLEMENTED_GENERICS: Lazy<HashSet<&str>> = Lazy::new(|| {
let mut out = HashSet::from([
"cv::Affine3",
"cv::Mat_",
"cv::Matx",
"cv::Point3_",
"cv::Point_",
"cv::Rect_",
"cv::Scalar_",
"cv::Size_",
]);
out.extend(&*IMPLEMENTED_CONST_GENERICS);
out
});