MCPcopy Create free account
hub / github.com/pybind/pybind11 / PyTF7

Function PyTF7

tests/test_factory_constructors.cpp:167–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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};

Callers 1

PYBIND11_OVERRIDEFunction · 0.85

Calls 1

print_copy_createdFunction · 0.85

Tested by

no test coverage detected