comparison Sources/Plugin.cpp @ 213:f8dc8dd2da76

documented orthanc.RegisterIncomingCStoreInstanceFilter() and orthanc.RegisterReceivedInstanceCallback()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 03 Jul 2024 14:56:51 +0200
parents 2db6c1f6417f
children d74ed3e6423e
comparison
equal deleted inserted replaced
212:2db6c1f6417f 213:f8dc8dd2da76
275 * Add all the manual global functions 275 * Add all the manual global functions
276 **/ 276 **/
277 277
278 std::list<PyMethodDef> functions; 278 std::list<PyMethodDef> functions;
279 279
280
281 /**
282 * New in release 4.0
283 **/
284
285 {
286 PyMethodDef f = { "RegisterIncomingCStoreInstanceFilter", RegisterIncomingCStoreInstanceFilter, METH_VARARGS, "" };
287 functions.push_back(f);
288 }
289
290 {
291 PyMethodDef f = { "RegisterReceivedInstanceCallback", RegisterReceivedInstanceCallback, METH_VARARGS, "" };
292 functions.push_back(f);
293 }
294 280
295 /** 281 /**
296 * New in release 4.1 282 * New in release 4.1
297 **/ 283 **/
298 284