Mercurial > hg > orthanc-python
comparison CodeAnalysis/ParseOrthancSDK.py @ 64:091fb1903bfc
new wrapped function: orthanc.RegisterWorklistCallback() and orthanc.WorklistAnswers.WorklistAddAnswer()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 11 Jun 2021 09:03:43 +0200 |
parents | 32de70a1e4c7 |
children | 4da5ce3468b4 |
comparison
equal
deleted
inserted
replaced
63:32de70a1e4c7 | 64:091fb1903bfc |
---|---|
46 'OrthancPluginRegisterMoveCallback', | 46 'OrthancPluginRegisterMoveCallback', |
47 'OrthancPluginRegisterOnChangeCallback', | 47 'OrthancPluginRegisterOnChangeCallback', |
48 'OrthancPluginRegisterOnStoredInstanceCallback', | 48 'OrthancPluginRegisterOnStoredInstanceCallback', |
49 'OrthancPluginRegisterRestCallback', # Implemented using OrthancPlugins::RegisterRestCallback | 49 'OrthancPluginRegisterRestCallback', # Implemented using OrthancPlugins::RegisterRestCallback |
50 'OrthancPluginRegisterRestCallbackNoLock', # Implemented using OrthancPlugins::RegisterRestCallback | 50 'OrthancPluginRegisterRestCallbackNoLock', # Implemented using OrthancPlugins::RegisterRestCallback |
51 'OrthancPluginRegisterWorklistCallback', | |
52 'OrthancPluginWorklistAddAnswer', | |
51 } | 53 } |
52 | 54 |
53 CUSTOM_METHODS = [ | 55 CUSTOM_METHODS = [ |
54 { | 56 { |
55 'class_name' : 'OrthancPluginFindQuery', | 57 'class_name' : 'OrthancPluginFindQuery', |
60 { | 62 { |
61 'class_name' : 'OrthancPluginFindQuery', | 63 'class_name' : 'OrthancPluginFindQuery', |
62 'method_name' : 'GetFindQueryTagElement', | 64 'method_name' : 'GetFindQueryTagElement', |
63 'implementation' : 'GetFindQueryTagElement', | 65 'implementation' : 'GetFindQueryTagElement', |
64 'sdk_function' : 'OrthancPluginGetFindQueryTag', | 66 'sdk_function' : 'OrthancPluginGetFindQueryTag', |
67 }, | |
68 { | |
69 'class_name' : 'OrthancPluginWorklistAnswers', | |
70 'method_name' : 'WorklistAddAnswer', | |
71 'implementation' : 'WorklistAddAnswer', | |
72 'sdk_function' : 'OrthancPluginWorklistAddAnswer', | |
65 }, | 73 }, |
66 ] | 74 ] |
67 | 75 |
68 | 76 |
69 ## | 77 ## |