#include <GaudiKernel/HistoryObj.h>
|
| virtual void | indent (std::ostream &, int) const |
| |
Base class for History Objects
- Author
- Charles Leggett
- Date
- Jul 13 2004
Definition at line 30 of file HistoryObj.h.
◆ ~HistoryObj()
| virtual HistoryObj::~HistoryObj |
( |
| ) |
|
|
virtualdefault |
◆ classID()
| const CLID & HistoryObj::classID |
( |
| ) |
|
|
static |
Definition at line 44 of file HistoryObj.cpp.
45 static const CLID CLID_HistoryObj = 86452397;
46 return CLID_HistoryObj;
◆ clID()
| const CLID& HistoryObj::clID |
( |
| ) |
const |
|
inlineoverridevirtual |
◆ convert_string()
| std::string HistoryObj::convert_string |
( |
const std::string & |
input_string | ) |
|
|
static |
Definition at line 14 of file HistoryObj.cpp.
17 std::string modified_string;
19 for (
const auto& itr : input_string ) {
21 modified_string.append(
"&" );
22 else if ( itr ==
'<' )
23 modified_string.append(
"<" );
24 else if ( itr ==
'>' )
25 modified_string.append(
">" );
26 else if ( itr ==
'"' )
27 modified_string.append(
""" );
28 else if ( itr ==
'\'' )
29 modified_string.append(
"'" );
31 modified_string += itr;
34 return modified_string;
◆ dump()
| virtual std::ostream& HistoryObj::dump |
( |
std::ostream & |
, |
|
|
bool |
isXML = false, |
|
|
int |
indent = 0 |
|
) |
| const |
|
pure virtual |
◆ indent()
| void HistoryObj::indent |
( |
std::ostream & |
ost, |
|
|
int |
i |
|
) |
| const |
|
protectedvirtual |
◆ operator<<
| std::ostream& operator<< |
( |
std::ostream & |
lhs, |
|
|
const HistoryObj & |
rhs |
|
) |
| |
|
friend |
The documentation for this class was generated from the following files: