It is using delim now

This commit is contained in:
maartenkeijzer 2000-10-23 10:58:54 +00:00
commit b0b0a3f9da

View file

@ -18,7 +18,7 @@ void eoFileMonitor::printHeader(std::ostream& os)
for (; it != vec.end(); ++it)
{
os << ',' << (*it)->longName();
os << delim.c_str() << (*it)->longName();
}
os << '\n';
}
@ -58,7 +58,7 @@ eoMonitor& eoFileMonitor::operator()(std::ostream& os)
for(++it; it != vec.end(); ++it)
{
os << ',' << (*it)->getValue();
os << delim.c_str() << (*it)->getValue();
}
os << '\n';