Enumerations | |
enum | ActionCodes { IgnoreCompletely = 0, Rethrow, SkipEvent, FailPath, LastCode } |
Functions | |
const char * | actionName (ActionCodes code) |
char const * edm::actions::actionName | ( | ActionCodes | code | ) |
Definition at line 26 of file Actions.cc.
{ static ActionNames tab; return static_cast<unsigned int>(code) < tab.table_.size() ? tab.table_[code] : "UnknownAction"; }