comparison OrthancServer/Sources/ServerJobs/ResourceModificationJob.h @ 5158:02cfd23a556a

CppCheck
author Alain Mazy <am@osimis.io>
date Thu, 02 Feb 2023 10:33:15 +0100
parents 023569e7155b
children 0ea402b4d901
comparison
equal deleted inserted replaced
5157:874e6b135614 5158:02cfd23a556a
62 DicomTransferSyntax transferSyntax_; 62 DicomTransferSyntax transferSyntax_;
63 std::set<std::string> modifiedSeries_; // the list of new series ids of the newly generated series 63 std::set<std::string> modifiedSeries_; // the list of new series ids of the newly generated series
64 std::set<std::string> instancesToReconstruct_; // for each new series generated, an instance id that we can use to reconstruct the hierarchy DB model 64 std::set<std::string> instancesToReconstruct_; // for each new series generated, an instance id that we can use to reconstruct the hierarchy DB model
65 65
66 protected: 66 protected:
67 virtual bool HandleInstance(const std::string& instance) ORTHANC_OVERRIDE; // from ThreadedSetOfInstancesJob 67 virtual bool HandleInstance(const std::string& instance) ORTHANC_OVERRIDE;
68 68
69 virtual void PostProcessInstances(); 69 virtual void PostProcessInstances() ORTHANC_OVERRIDE;
70 70
71 public: 71 public:
72 explicit ResourceModificationJob(ServerContext& context, unsigned int workersCount); 72 explicit ResourceModificationJob(ServerContext& context, unsigned int workersCount);
73 73
74 ResourceModificationJob(ServerContext& context, 74 ResourceModificationJob(ServerContext& context,