| 107 | |
| 108 | template<int inum> |
| 109 | void ToggleSingle() { |
| 110 | std::cout << "> Toggling switch " << inum << "..." << std::endl; |
| 111 | DefectiveSwitch<inum>::dispatch(Toggle()); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | // ---------------------------------------------------------------------------- |