Enhancement - Context::filter

- Automatic filter should not include "uuid".
This commit is contained in:
Paul Beckingham 2009-06-10 22:21:33 -04:00
parent 8bef5a90cd
commit fc7b344a8b

View file

@ -440,10 +440,11 @@ std::cout << "# parse post-termination description '" << *arg << "'" << std::end
}
////////////////////////////////////////////////////////////////////////////////
// Add all the attributes in the task to the filter.
// Add all the attributes in the task to the filter. All except uuid.
void Context::constructFilter ()
{
foreach (att, task)
if (att->first != "uuid")
filter.push_back (att->second);
}