#include "JobControl/JobCModuleRegistry.h"#include <cstdio>#include <cstring>#include "TSystem.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: JobCModuleRegistry.cxx,v 1.15 2003/10/17 00:41:12 messier Exp $") | |
| ostream & | operator<< (ostream &os, const JobCModuleRegistry &jcr) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 21 of file JobCModuleRegistry.cxx. References JobCModuleRegistry::fModuleTable. 00022 {
00023 list<JobCModuleProxy*>::const_iterator itrModuleTable;
00024 os << "Registered job modules:\n";
00025 for (itrModuleTable = jcr.fModuleTable.begin();
00026 itrModuleTable != jcr.fModuleTable.end();
00027 ++itrModuleTable) {
00028 os << " " <<
00029 (*itrModuleTable)->GetName() << " - " <<
00030 (*itrModuleTable)->GetFunc() << "\n";
00031 }
00032 return os;
00033 }
|
1.3.9.1