Skip to content
Snippets Groups Projects
Commit 668ea79a authored by Olivier Langella's avatar Olivier Langella
Browse files

WIP write tandem param

parent 46abe4e8
No related branches found
Tags xtpcpp_0.1.17-2
Loading
......@@ -35,8 +35,14 @@ TandemParameters::~TandemParameters() {
}
TandemParameters::TandemParameters(const TandemParameters & other) {
_map_label_value = other._map_label_value;
//_map_label_value = other._map_label_value;
_method_name = other._method_name;
QMap<QString, QString>::const_iterator i = other._map_label_value.constBegin();
while (i != other._map_label_value.constEnd()) {
_map_label_value.insert(i.key(), i.value());
i++; // added
}
}
void TandemParameters::setParamLabel(const QString & label, const QString & value) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment