ParamProperties.cc
1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* ParamProperties.cc
*
* Created on: Oct 1, 2014
* Author: m.mazel
*/
#include "ParamProperties.hh"
namespace AMDA {
namespace ParamOutputImpl {
namespace Download {
ParamProperties::ParamProperties() :
_originalId(),
_outputId()
{
// TODO Auto-generated constructor stub
}
ParamProperties::~ParamProperties() {
// TODO Auto-generated destructor stub
}
const std::string& ParamProperties::getOriginalId() const {
return _originalId;
}
void ParamProperties::setOriginalId(const std::string& originalId) {
_originalId = originalId;
}
const std::string& ParamProperties::getOutputId() const
{
return _outputId;
}
void ParamProperties::setOutputId(const std::string& outputId)
{
_outputId = outputId;
}
ParamIndexDefList& ParamProperties::getIndexDefList() {
return _indexDefList;
}
void ParamProperties::addIndexDef (std::string indexDef) {
_indexDefList.push_back(indexDef);
}
ParamCalibrationInfoList& ParamProperties::getCalibrationInfoList() {
return _calibrationInfoList;
}
void ParamProperties::addCalibrationInfo (const std::string &calibrationInfo) {
_calibrationInfoList.push_back (calibrationInfo);
}
} // namespace Download
} // namespace ParamOutputImpl
} // namespace AMDA