#include <cstring>#include "RawData/RawBlockRegistry.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: RawBlockRegistry.cxx,v 1.9 2009/02/28 21:46:16 gmieg Exp $") | |
| std::ostream & | operator<< (std::ostream &os, const RawBlockRegistry &rbr) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 20 of file RawBlockRegistry.cxx. References RawBlockRegistry::fRawBlockProxyTable. 00021 {
00022 std::list<RawBlockProxy*>::const_iterator itrRawBlockProxyTable;
00023 os << "Registered Raw Blocks:\n";
00024 for (itrRawBlockProxyTable = rbr.fRawBlockProxyTable.begin();
00025 itrRawBlockProxyTable != rbr.fRawBlockProxyTable.end();
00026 ++itrRawBlockProxyTable) {
00027 os << " " << (*(*itrRawBlockProxyTable)) << endl;
00028 }
00029 return os;
00030 }
|
1.3.9.1