Mercurial > hg > orthanc
annotate OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.cpp @ 5013:c074a5827da9
todo
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 08 Jun 2022 15:46:24 +0200 |
parents | 43e613a7756b |
children | 0ea402b4d901 |
rev | line source |
---|---|
4304 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
4870
43e613a7756b
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4831
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
43e613a7756b
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4831
diff
changeset
|
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4304 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Lesser General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Lesser General Public | |
19 * License along with this program. If not, see | |
20 * <http://www.gnu.org/licenses/>. | |
21 **/ | |
22 | |
23 | |
24 #include "../../PrecompiledHeaders.h" | |
25 #include "StringOperationValue.h" | |
26 | |
27 | |
28 namespace Orthanc | |
29 { | |
30 StringOperationValue::StringOperationValue(const std::string& content) : | |
31 content_(content) | |
32 { | |
33 } | |
34 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4304
diff
changeset
|
35 IJobOperationValue::Type StringOperationValue::GetType() const |
4304 | 36 { |
37 return Type_String; | |
38 } | |
39 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4304
diff
changeset
|
40 IJobOperationValue* StringOperationValue::Clone() const |
4304 | 41 { |
42 return new StringOperationValue(content_); | |
43 } | |
44 | |
45 const std::string& StringOperationValue::GetContent() const | |
46 { | |
47 return content_; | |
48 } | |
49 | |
50 void StringOperationValue::Serialize(Json::Value& target) const | |
51 { | |
52 target = Json::objectValue; | |
53 target["Type"] = "String"; | |
54 target["Content"] = content_; | |
55 } | |
56 } |