comparison OrthancServer/ServerJobs/ArchiveJob.cpp @ 2663:228e2783ce83 jobs

some jobs might not be serializable
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Jun 2018 18:18:02 +0200
parents e1893d31652a
children cb1b26a7db98
comparison
equal deleted inserted replaced
2662:47d812308d63 2663:228e2783ce83
899 value["Description"] = description_; 899 value["Description"] = description_;
900 value["InstancesCount"] = instancesCount_; 900 value["InstancesCount"] = instancesCount_;
901 value["UncompressedSizeMB"] = 901 value["UncompressedSizeMB"] =
902 static_cast<unsigned int>(uncompressedSize_ / MEGA_BYTES); 902 static_cast<unsigned int>(uncompressedSize_ / MEGA_BYTES);
903 } 903 }
904
905
906 void ArchiveJob::Serialize(Json::Value& value)
907 {
908 // TODO
909 }
910 } 904 }