Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PAPPSO
xtpcpp
Commits
668ea79a
Commit
668ea79a
authored
Sep 20, 2017
by
Olivier Langella
Browse files
WIP write tandem param
parent
46abe4e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core/tandem_run/tandemparameters.cpp
View file @
668ea79a
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment