// Affect the _general_module_list and _general_path_list members
// with the common catalog
+ cout << "$$$ _general_path = " << _general_path << endl;
list<string> dirList;
#ifdef WNT
for (list<string>::iterator iter = dirList.begin(); iter != dirList.end(); iter++)
{
string aPath = (*iter);
+ cout << "$$$ aPath = " << aPath.c_str() << endl;
//remove inverted commas from filename
while (aPath.find('\"') != string::npos)
aPath.erase(aPath.find('\"'), 1);
_general_path_list);
}
+ for (unsigned int ind = 0; ind < _general_module_list.size(); ind++) {
+ cout << "$$$ = _general_module_list[" << ind << "] = "
+ << _general_module_list[ind].name.c_str() << endl;
+ }
+
// Verification of _general_path_list content
if (!_verify_path_prefix(_general_path_list)) {
if(MYDEBUG) MESSAGE( "Error while parsing the general path list, "