Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp44 class TestFactory3 { class
47 TestFactory3() : value("(empty3)") { print_default_created(this); } in TestFactory3() function in TestFactory3
48 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory3() function in TestFactory3
50 TestFactory3(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory3() function in TestFactory3
51 TestFactory3(TestFactory3 &&m) { value = std::move(m.value); print_move_created(this); } in TestFactory3() function in TestFactory3