Mercurial > hg > orthanc
comparison Core/JobsEngine/JobStatus.h @ 2647:73d7d95dd75e jobs
removal of internal job information
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 31 May 2018 17:45:09 +0200 |
parents | 8da2cffc2378 |
children | e1893d31652a |
comparison
equal
deleted
inserted
replaced
2646:740983056f9e | 2647:73d7d95dd75e |
---|---|
42 private: | 42 private: |
43 ErrorCode errorCode_; | 43 ErrorCode errorCode_; |
44 float progress_; | 44 float progress_; |
45 std::string jobType_; | 45 std::string jobType_; |
46 Json::Value publicContent_; | 46 Json::Value publicContent_; |
47 Json::Value internalContent_; | |
48 | 47 |
49 public: | 48 public: |
50 JobStatus(); | 49 JobStatus(); |
51 | 50 |
52 JobStatus(ErrorCode code, | 51 JobStatus(ErrorCode code, |
74 | 73 |
75 const Json::Value& GetPublicContent() const | 74 const Json::Value& GetPublicContent() const |
76 { | 75 { |
77 return publicContent_; | 76 return publicContent_; |
78 } | 77 } |
79 | |
80 const Json::Value& GetInternalContent() const | |
81 { | |
82 return internalContent_; | |
83 } | |
84 }; | 78 }; |
85 } | 79 } |