It is using delim now
This commit is contained in:
parent
f7c98d5b31
commit
b0b0a3f9da
1 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ void eoFileMonitor::printHeader(std::ostream& os)
|
||||||
|
|
||||||
for (; it != vec.end(); ++it)
|
for (; it != vec.end(); ++it)
|
||||||
{
|
{
|
||||||
os << ',' << (*it)->longName();
|
os << delim.c_str() << (*it)->longName();
|
||||||
}
|
}
|
||||||
os << '\n';
|
os << '\n';
|
||||||
}
|
}
|
||||||
|
|
@ -58,7 +58,7 @@ eoMonitor& eoFileMonitor::operator()(std::ostream& os)
|
||||||
|
|
||||||
for(++it; it != vec.end(); ++it)
|
for(++it; it != vec.end(); ++it)
|
||||||
{
|
{
|
||||||
os << ',' << (*it)->getValue();
|
os << delim.c_str() << (*it)->getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
os << '\n';
|
os << '\n';
|
||||||
|
|
|
||||||
Reference in a new issue