Releases the device (decrements the reference count).
| 793 | |
| 794 | // Releases the device (decrements the reference count). |
| 795 | void release() |
| 796 | { |
| 797 | if (handle) |
| 798 | { |
| 799 | oidnReleaseDevice(handle); |
| 800 | handle = nullptr; |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | // Sets a boolean parameter of the device. |
| 805 | void set(const char* name, bool value) |
nothing calls this directly
no test coverage detected