Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp32 class TestFactory2 { class
34 TestFactory2() : value("(empty2)") { print_default_created(this); } in TestFactory2() function in TestFactory2
35 TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory2() function in TestFactory2
36 TestFactory2(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory2() function in TestFactory2
38 TestFactory2(TestFactory2 &&m) { value = std::move(m.value); print_move_created(this); } in TestFactory2() function in TestFactory2