| 165 | } |
| 166 | PyTF7(PyTF7 &&f) noexcept : TestFactory7(std::move(f)) { print_move_created(this); } |
| 167 | PyTF7(const PyTF7 &f) : TestFactory7(f) { print_copy_created(this); } |
| 168 | ~PyTF7() override { print_destroyed(this); } |
| 169 | int get() override { PYBIND11_OVERRIDE(int, TestFactory7, get, /*no args*/); } |
| 170 | }; |
no test coverage detected