| 1798 | Wrapper(const cl_type &obj) : object_(obj) { } |
| 1799 | |
| 1800 | ~Wrapper() |
| 1801 | { |
| 1802 | if (object_ != NULL) { release(); } |
| 1803 | } |
| 1804 | |
| 1805 | Wrapper(const Wrapper<cl_type>& rhs) |
| 1806 | { |
nothing calls this directly
no outgoing calls
no test coverage detected