}
/**
-Loads an object from a file stored in a collection. The object must havea
+Loads an object from a file stored in a collection. The object must have a
public Loader class. The collection is passed to the Loader constructor,
followed by any extra arguments.
*/
string Statement::get_signature() const
{
string result;
- for(Arguments::const_iterator i = args.begin(); i!=args.end(); ++i)
+ for(Arguments::const_iterator i=args.begin(); i!=args.end(); ++i)
result += i->get_signature();
return result;
}