#include <sstream>
#include "./nodeIDPrinter.h"
Go to the source code of this file.
|
std::string | nodeIDPrinter (const std::string &name, int nodeID, int parentID, bool pass, const std::string &timerStr) |
|
std::string | nodeIDPrinter (const std::string &name, bool pass, const std::string &timerStr) |
|
std::string | nodeIDPrinter (const std::string &name, int nodeID, int parentID, const std::optional< bool > &pass, const std::string &timerStr) |
|
std::string | nodeIDPrinter (const std::string &name, const std::optional< bool > &pass, const std::string &timerStr) |
|
std::string | nodeIDPrinter (const std::string &name, int nodeID, int parentID) |
|
◆ nodeIDPrinter() [1/5]
std::string nodeIDPrinter |
( |
const std::string & |
name, |
|
|
bool |
pass, |
|
|
const std::string & |
timerStr |
|
) |
| |
◆ nodeIDPrinter() [2/5]
std::string nodeIDPrinter |
( |
const std::string & |
name, |
|
|
const std::optional< bool > & |
pass, |
|
|
const std::string & |
timerStr |
|
) |
| |
◆ nodeIDPrinter() [3/5]
std::string nodeIDPrinter |
( |
const std::string & |
name, |
|
|
int |
nodeID, |
|
|
int |
parentID |
|
) |
| |
Definition at line 63 of file nodeIDPrinter.cxx.
68 ss <<
"name(): " <<
name <<
" node: " << nodeID
69 <<
" parent: " << parentID
◆ nodeIDPrinter() [4/5]
std::string nodeIDPrinter |
( |
const std::string & |
name, |
|
|
int |
nodeID, |
|
|
int |
parentID, |
|
|
bool |
pass, |
|
|
const std::string & |
timerStr |
|
) |
| |
Definition at line 7 of file nodeIDPrinter.cxx.
14 ss <<
"name(): " <<
name <<
" node: " << nodeID
15 <<
" parent: " << parentID
16 <<
" pass: " << std::boolalpha << pass <<
" " <<timerStr <<
'\n';
◆ nodeIDPrinter() [5/5]
std::string nodeIDPrinter |
( |
const std::string & |
name, |
|
|
int |
nodeID, |
|
|
int |
parentID, |
|
|
const std::optional< bool > & |
pass, |
|
|
const std::string & |
timerStr |
|
) |
| |
Definition at line 32 of file nodeIDPrinter.cxx.
41 ss <<
"name(): " <<
name <<
" node: " << nodeID
42 <<
" parent: " << parentID
43 <<
" pass: " <<
"ERROR " <<timerStr <<
'\n';