Searched defs:ExampleMandA (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_methods_and_attributes.cpp19 class ExampleMandA { class
21 ExampleMandA() { print_default_created(this); } function in class:ExampleMandA
22 ExampleMandA(int value) : value(value) { print_created(this, value); } function in class:ExampleMandA
23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } function in class:ExampleMandA
24 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); } function in class:ExampleMandA
[all...]

Completed in 10 milliseconds