comparison Plugins/Engine/PluginsEnumerations.cpp @ 1773:613df4362575

New UpdatedAttachment and UpdatedMetadata events in plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Nov 2015 15:24:23 +0100
parents f4286d99ee0a
children 2abfdca9b915
comparison
equal deleted inserted replaced
1772:53e045b5a8ec 1773:613df4362575
120 return OrthancPluginChangeType_StableSeries; 120 return OrthancPluginChangeType_StableSeries;
121 121
122 case ChangeType_StableStudy: 122 case ChangeType_StableStudy:
123 return OrthancPluginChangeType_StableStudy; 123 return OrthancPluginChangeType_StableStudy;
124 124
125 case ChangeType_UpdatedAttachment:
126 return OrthancPluginChangeType_UpdatedAttachment;
127
128 case ChangeType_UpdatedMetadata:
129 return OrthancPluginChangeType_UpdatedMetadata;
130
125 default: 131 default:
126 throw OrthancException(ErrorCode_ParameterOutOfRange); 132 throw OrthancException(ErrorCode_ParameterOutOfRange);
127 } 133 }
128 } 134 }
129 135