Added a comment

This commit is contained in:
Harry Moffat 2003-08-21 22:32:46 +00:00
parent 2780df87b6
commit 3e9e01ccce

View file

@ -101,6 +101,14 @@ namespace Cantera {
ifstream s(ff.c_str());
XML_Node* x = new XML_Node("doc");
x->build(s);
/*
* Add the built XML Tree to the map, xmlfiles.
* It stores the pointer to the tree, with the
* key being the name of the file.
*
* HKM Note: shouldn't the key be the full pathname of
* the file, i.e., ff?
*/
__app->xmlfiles[file] = x;
}
return __app->xmlfiles[file];