| 60 | PJ *m_obj = nullptr; |
| 61 | explicit ObjectKeeper(PJ *obj) : m_obj(obj) {} |
| 62 | ~ObjectKeeper() { proj_destroy(m_obj); } |
| 63 | |
| 64 | ObjectKeeper(const ObjectKeeper &) = delete; |
| 65 | ObjectKeeper &operator=(const ObjectKeeper &) = delete; |
nothing calls this directly
no test coverage detected