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

/gem5/ext/pybind11/tests/
H A Dtest_multiple_inheritance.cpp102 struct Base1a { struct
103 Base1a(int i) : i(i) { } function in struct:Base1a
107 py::class_<Base1a, std::shared_ptr<Base1a>>(m, "Base1a")
109 .def("foo", &Base1a::foo);
120 struct Base12a : Base1a, Base2a {
121 Base12a(int i, int j) : Base1a(i), Base2a(j) { }

Completed in 2 milliseconds