comparison OrthancServer/Scheduler/StorePeerCommand.h @ 2020:a0bd8cd55da7

reorganization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 15 Jun 2016 17:19:10 +0200
parents b1291df2f780
children a3a65de1840f
comparison
equal deleted inserted replaced
2019:9c9332e486ca 2020:a0bd8cd55da7
40 { 40 {
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 WebServiceParameters peer_;
46 bool ignoreExceptions_; 46 bool ignoreExceptions_;
47 47
48 public: 48 public:
49 StorePeerCommand(ServerContext& context, 49 StorePeerCommand(ServerContext& context,
50 const OrthancPeerParameters& peer, 50 const WebServiceParameters& peer,
51 bool ignoreExceptions); 51 bool ignoreExceptions);
52 52
53 virtual bool Apply(ListOfStrings& outputs, 53 virtual bool Apply(ListOfStrings& outputs,
54 const ListOfStrings& inputs); 54 const ListOfStrings& inputs);
55 }; 55 };