8class __declspec(dllexport) ParameterDescription
11 ParameterDescription(
const MetadataParameter& _metadataParameter,
bool _constantForDataset)
12 :m_metadataParameter(_metadataParameter), m_constantForDataset(_constantForDataset){}
13 ~ParameterDescription() =
default;
15 ParameterDescription(ParameterDescription&& _other)
noexcept =
default;
16 ParameterDescription& operator=(ParameterDescription&& _other) =
default;
18 ParameterDescription(
const ParameterDescription& _other) =
delete;
19 ParameterDescription& operator=(
const ParameterDescription& _other) =
delete;
21 MetadataParameter& getMetadataParameter()
23 return m_metadataParameter;
26 void setParameterConstantForDataset(
bool _constantForDataset) { m_constantForDataset = _constantForDataset; };
27 bool getParameterConstantForDataset()
const {
return m_constantForDataset; }
29 MetadataParameter m_metadataParameter;
30 bool m_constantForDataset =
false;