Searched refs:WithDict (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_multiple_inheritance.cpp197 struct WithDict { }; struct
198 struct VanillaDictMix1 : Vanilla, WithDict { };
199 struct VanillaDictMix2 : WithDict, Vanilla { };
200 py::class_<WithDict>(m, "WithDict", py::dynamic_attr()).def(py::init<>());
201 py::class_<VanillaDictMix1, Vanilla, WithDict>(m, "VanillaDictMix1").def(py::init<>());
202 py::class_<VanillaDictMix2, WithDict, Vanilla>(m, "VanillaDictMix2").def(py::init<>());

Completed in 10 milliseconds