comparison OrthancServer/Scheduler/StorePeerCommand.h @ 1165:0561f2087cc9

Fix reporting of errors in Orthanc Explorer when sending images to peers/modalities
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 18 Sep 2014 17:48:55 +0200
parents 26642cecd36d
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1164:0a55d8eb194e 1165:0561f2087cc9
41 class StorePeerCommand : public IServerCommand 41 class StorePeerCommand : public IServerCommand
42 { 42 {
43 private: 43 private:
44 ServerContext& context_; 44 ServerContext& context_;
45 OrthancPeerParameters peer_; 45 OrthancPeerParameters peer_;
46 bool ignoreExceptions_;
46 47
47 public: 48 public:
48 StorePeerCommand(ServerContext& context, 49 StorePeerCommand(ServerContext& context,
49 const OrthancPeerParameters& peer); 50 const OrthancPeerParameters& peer,
51 bool ignoreExceptions);
50 52
51 virtual bool Apply(ListOfStrings& outputs, 53 virtual bool Apply(ListOfStrings& outputs,
52 const ListOfStrings& inputs); 54 const ListOfStrings& inputs);
53 }; 55 };
54 } 56 }