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

/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp16 class ExampleVirt { class
18 ExampleVirt(int state) : state(state) { print_created(this, state); } function in class:ExampleVirt
19 ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); } function in class:ExampleVirt
20 ExampleVirt(ExampleVirt &&e) : state(e.state) { print_move_created(this); e.state = 0; } function in class:ExampleVirt
[all...]

Completed in 4 milliseconds