|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
#include "GaudiKernel/DataHistory.h"#include "GaudiKernel/AlgorithmHistory.h"#include <iostream>
Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &lhs, const DataHistory &rhs) |
| ostream& operator<< | ( | ostream & | lhs, | |
| const DataHistory & | rhs | |||
| ) |
Definition at line 46 of file DataHistory.cpp.
00046 { 00047 00048 lhs << "ClassID: " << rhs.dataClassID() << endl 00049 << "Key: " << rhs.dataKey() << endl 00050 << "AlgorithHistory: " << (void*) rhs.algorithmHistory() << endl; 00051 00052 return lhs; 00053 00054 }