comparison Framework/Oracle/ParseDicomFromWadoCommand.h @ 1299:c38c89684d83 broker

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 17:21:24 +0100
parents 0ca50d275b9a
children 121d01aa328e
comparison
equal deleted inserted replaced
1297:6ab03e429f06 1299:c38c89684d83
29 { 29 {
30 class ParseDicomFromWadoCommand : public OracleCommandBase 30 class ParseDicomFromWadoCommand : public OracleCommandBase
31 { 31 {
32 private: 32 private:
33 std::string sopInstanceUid_; 33 std::string sopInstanceUid_;
34 std::auto_ptr<IOracleCommand> restCommand_; 34 std::unique_ptr<IOracleCommand> restCommand_;
35 35
36 public: 36 public:
37 ParseDicomFromWadoCommand(const std::string& sopInstanceUid, 37 ParseDicomFromWadoCommand(const std::string& sopInstanceUid,
38 IOracleCommand* restCommand); 38 IOracleCommand* restCommand);
39 39