| 40 | DataProcessing::~DataProcessing() = default; |
| 41 | |
| 42 | DataProcessing::DataProcessing(DataProcessing&& rhs) noexcept : |
| 43 | MetaInfoInterface(std::move(rhs)), |
| 44 | software_(std::move(rhs.software_)), |
| 45 | processing_actions_(std::move(rhs.processing_actions_)), |
| 46 | completion_time_(std::move(rhs.completion_time_)) |
| 47 | { |
| 48 | } |
| 49 | |
| 50 | bool DataProcessing::operator==(const DataProcessing& rhs) const |
| 51 | { |
no outgoing calls