| 42 | |
| 43 | template <typename T> |
| 44 | static void setParamOnObject(OSPObject _obj, const char *p, const T &v) |
| 45 | { |
| 46 | auto *obj = (ManagedObject *)_obj; |
| 47 | obj->setParam(p, v); |
| 48 | } |
| 49 | |
| 50 | #define declare_param_setter(TYPE) \ |
| 51 | { \ |
no test coverage detected