| 28 | } |
| 29 | |
| 30 | ImageJobImpl* ImageJobImpl::ctor(const maajs::CallbackInfo& info) |
| 31 | { |
| 32 | auto job = new ImageJobImpl; |
| 33 | job->source = maajs::PersistentObject(info[0].As<maajs::ObjectType>()); |
| 34 | job->id = maajs::JSConvert<uint64_t>::from_value(info[1]); |
| 35 | return job; |
| 36 | } |
| 37 | |
| 38 | void ImageJobImpl::init_proto(maajs::ObjectType proto, maajs::FunctionType) |
| 39 | { |
nothing calls this directly
no test coverage detected