Base class for History Objects.
More...
#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 24 of file HistoryObj.h.
HistoryObj::HistoryObj |
( |
| ) |
|
HistoryObj::~HistoryObj |
( |
| ) |
|
|
virtual |
const CLID & HistoryObj::classID |
( |
| ) |
|
|
static |
Definition at line 62 of file HistoryObj.cpp.
64 static CLID CLID_HistoryObj = 86452397;
65 return CLID_HistoryObj;
unsigned int CLID
Class ID definition.
virtual const CLID& HistoryObj::clID |
( |
| ) |
const |
|
inlinevirtual |
std::string HistoryObj::convert_string |
( |
const std::string & |
input_string | ) |
|
|
static |
Definition at line 29 of file HistoryObj.cpp.
33 std::string::const_iterator itr_string;
34 std::string modified_string;
36 for(itr_string=input_string.begin(); itr_string!=input_string.end(); itr_string++) {
37 if (*itr_string ==
'&') modified_string.append(
"&");
38 else if (*itr_string ==
'<') modified_string.append(
"<");
39 else if (*itr_string ==
'>') modified_string.append(
">");
40 else if (*itr_string ==
'"') modified_string.append(
""");
41 else if (*itr_string ==
'\'') modified_string.append(
"'");
42 else if (*itr_string ==
'\"') modified_string.append(
""");
43 else modified_string+=*itr_string;
46 return modified_string;
virtual void HistoryObj::dump |
( |
std::ostream & |
, |
|
|
const bool |
isXML = false , |
|
|
int |
indent = 0 |
|
) |
| const |
|
pure virtual |
void HistoryObj::indent |
( |
std::ostream & |
ost, |
|
|
int |
i |
|
) |
| const |
|
protectedvirtual |
The documentation for this class was generated from the following files: