Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_virtual_functions.cpp16 class ExampleVirt { class
18 ExampleVirt(int state) : state(state) { print_created(this, state); } in ExampleVirt() function in ExampleVirt
19 ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); } in ExampleVirt() function in ExampleVirt
20 ExampleVirt(ExampleVirt &&e) : state(e.state) { print_move_created(this); e.state = 0; } in ExampleVirt() function in ExampleVirt