| 145 | inline void SetGuidance(const char* aGuidance) { commandGuidance.emplace_back(aGuidance); } |
| 146 | |
| 147 | inline const G4String GetTitle() const |
| 148 | { |
| 149 | return (commandGuidance.empty()) ? G4String("...Title not available...") : commandGuidance[0]; |
| 150 | } |
| 151 | |
| 152 | inline void SetToBeBroadcasted(G4bool val) { toBeBroadcasted = val; } |
| 153 | inline G4bool ToBeBroadcasted() const { return toBeBroadcasted; } |
no test coverage detected