Searched defs:ExampleMandA (Results 1 – 1 of 1) sorted by relevance
19 class ExampleMandA { class21 ExampleMandA() { print_default_created(this); } in ExampleMandA() function in ExampleMandA22 ExampleMandA(int value) : value(value) { print_created(this, value); } in ExampleMandA() function in ExampleMandA23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } in ExampleMandA() function in ExampleMandA24 ExampleMandA(std::string&&) {} in ExampleMandA() function in ExampleMandA25 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); } in ExampleMandA() function in ExampleMandA