--------------------------------------------------------------------
| 441 | |
| 442 | // -------------------------------------------------------------------- |
| 443 | void G4UIcommandTree::List() const |
| 444 | { |
| 445 | ListCurrent(); |
| 446 | std::size_t n_commandEntry = command.size(); |
| 447 | for (std::size_t i_thCommand = 0; i_thCommand < n_commandEntry; ++i_thCommand) { |
| 448 | command[i_thCommand]->List(); |
| 449 | } |
| 450 | std::size_t n_treeEntry = tree.size(); |
| 451 | for (std::size_t i_thTree = 0; i_thTree < n_treeEntry; ++i_thTree) { |
| 452 | tree[i_thTree]->List(); |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | // -------------------------------------------------------------------- |
| 457 | G4String G4UIcommandTree::CreateFileName(const char* pName) |
no test coverage detected