comparison OrthancServer/Scheduler/ModifyInstanceCommand.h @ 1009:26642cecd36d lua-scripting

clearer job interface
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Jul 2014 16:11:44 +0200
parents 187ed107a59f
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1008:187ed107a59f 1009:26642cecd36d
58 const DicomModification& GetModification() const 58 const DicomModification& GetModification() const
59 { 59 {
60 return modification_; 60 return modification_;
61 } 61 }
62 62
63 bool Apply(ListOfStrings& outputs, 63 virtual bool Apply(ListOfStrings& outputs,
64 const ListOfStrings& inputs); 64 const ListOfStrings& inputs);
65
66 bool SendOutputsToSink() const
67 {
68 return false;
69 }
70 }; 65 };
71 } 66 }