Enhancement - Location object

- Moved Location object into place, ready for integration.
This commit is contained in:
Paul Beckingham 2009-05-27 00:00:54 -04:00
parent 2dc566a726
commit de08c1d32e
5 changed files with 11 additions and 10 deletions

View file

@ -60,16 +60,17 @@ Record::~Record ()
}
////////////////////////////////////////////////////////////////////////////////
// The format is:
//
// [ Att::composeF4 ... ] \n
//
std::string Record::composeF4 ()
{
std::string ff4 = "[";
bool first = true;
foreach (r, (*this))
{
ff4 += (first ? "" : " ");
ff4 += r->second.composeF4 ();
}
ff4 += (first ? "" : " ") + r->second.composeF4 ();
ff4 += "]";
return ff4;